-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Toolbar] Added show and hide animations #80
Conversation
… the material design guidelines
…stad of canvas collor
- moves BottomNavigationAction under BottomNavigation.Action - makes styles global, moves them to getTheme.js - adds ability to use action without label - adds missing paddingTop - adds missing comments - fixes lint
Fix bottom navigation component
…g the material design mation guidelines
…y has some small issues.
Fix getting height of bottom navigation
Current coverage is 100% (diff: 100%)@@ master #80 diff @@
===================================
Files 7 7
Lines 300 300
Methods 7 7
Messages 0 0
Branches 5 5
===================================
Hits 300 300
Misses 0 0
Partials 0 0
|
}).start(); | ||
} | ||
hide = () => { | ||
const { moveAnimated, styles } = this.state; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The styles here is always undefined
, isn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh 😅, yeah that's still from the bottom navigation where you put the styles in the state.
Added show and hide animations just like the BottomNavigation component.