Reputation: 6852
I want to alight icon and label of BottomNavigationView
align horizontally. Something like this
Default orientation is given as
Should I make custom layout for menu items or is there any simple way?
Upvotes: 5
Views: 1241
Reputation: 3429
You can use this library to get bottom navigation bar with chips component.
buildscript {
...
repositories {
jcenter()
...
}
dependencies {
implementation 'com.ismaeldivita.chipnavigation:chip-navigation-bar:1.0.0'
}
Upvotes: 5