Code Monkey home page Code Monkey logo

flashy-tabbar's People

Contributors

askopin avatar boogl avatar erjanmx avatar lisadziuba avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flashy-tabbar's Issues

Badge display

Hi,

There seems to be an issue displaying the badge on the tab bar. The following code correctly sets the tab item badge value, but it doesn't seem to be display.

if let tabItems = tabBarController?.tabBar.items { let tabItem = tabItems[2] tabItem.badgeValue = "3" }

I've had a look through the CBTabBarButton code, but can't see where error is.

Unable to localize tab bar

I am using this tab bar
But when i update the titles they are added above the old tiltes
Also old titles remains there

How to change the color of the tab bar.

My application is dark and the tab bar is white. How do you change the color of the tab bar?
CBFlashyTabBar.appearance() doesn't work. Neither does the bar tint color on storyboard

Safearea bottom and Height of Tabbar and Badge Value

The safe area doesn't seem to work with the height of the tabbar. The tabBar is taller then the safeArea bottom which overlaps my views.

The badge Value also doesn't appear when i set badgeValue = "NEW" on any tabbar item.

[Solved] RTL Direction

Does not support RTL when using UIView.appearance().semanticContentAttribute == .forceRightToLeft

Solved:

The only solution I was able to implement was adding the following code to the viewDidAppear of my subclass for CBFlashyTabBarController

if UIView.appearance().semanticContentAttribute == .forceRightToLeft {
     self.tabBar.transform = CGAffineTransform(scaleX: -1, y: 1)
     tabBar.subviews.forEach { view in
        view.transform = CGAffineTransform(scaleX: -1, y: 1);
    }
}

Badge is not displaying

HI, I integrated flashy-tabbar with my iOS swift application, and I tried to show a badge but it is not displaying.
I tried like.

self.tabBarController?.tabBar.items?[1].badgeValue = "1"

change tabbar height

Hi , thanks for your awesome work .

can I change height of tabbar ?
if yes , please let me know how .

because on iPhone SE it seems too big .

regards .

Icons Disappear After A Coded Selected Index Switch

I have a screen that hides the tab bar controller. The issue is that as a result the way we return to the original view controller is by calling self.tabBarController?.selectedIndex = 0 which works fine except that the icons for the screen we were on and the screen we swapped to completely disappear.

Here is what that looks like:
Messed Up Tab Bar

And The Way It Is Supposed To Look:
Normal Tab Bar

The issue is on this repository.

I may be doing something else that is causing the issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.