Questions tagged [bottombar]

75 questions
86
votes
11 answers

BottomNavigationView with more than 3 Items: tab title is hiding

I'm using BottomNavigationView with using Android Support Desing Library 25. But when I switch the tabs, the other tab's title is hiding. But there is no hiding issue actual Bottom Navigation View. But mine is hiding. But I want to it looking like…
Yunus Haznedar
  • 1,466
  • 4
  • 19
  • 30
62
votes
6 answers

Error : IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponents

Below are my dependencies implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' My layout.xml
Goku
  • 8,198
  • 4
  • 33
  • 67
18
votes
10 answers

How to change BottomNavigationBarItem icon when selected, Flutter

I am new to Flutter. I have a BottomNavigationBar with 4 items. I want to change icon of the item when pressed. Please help. This is what I have done so far. bottomNavigationBar : new BottomNavigationBar( currentIndex: index, onTap:…
Fathima km
  • 1,883
  • 3
  • 12
  • 21
11
votes
4 answers

How to create a Navigation Drawer and Bottom Bar in the same app

I am creating an app, and I want to have a Navigation Drawer and a Bottom Bar in the app. I think that I am going for a good way, but I Can do that the Navigation Drawer when I display it, this is not above the Bottom Bar, it is behind, so How can I…
ter2016
  • 141
  • 1
  • 1
  • 6
8
votes
2 answers

Flutter permanently hide navigation bar

I am facing an issue in Flutter, at least with the Android emulator, which is quite annoying. I am using a screen in full screen mode, so I wanted to get rid of the bottom navigation bar. For that, after researching and checking here in…
codeKiller
  • 4,342
  • 10
  • 41
  • 90
5
votes
4 answers

Bottom app bar Navigation icon is not center vertical

I'm using android.support.design.bottomappbar.BottomAppBar but the navigation icon is coming in left top corner when option menu is added. without Option its working as expected (center_vertical). With option menu Without Option Menu Can any one…
5
votes
3 answers

How to increase distance between items in BottomBar?

I want to make exactly the same, bottom bar with floating action button. I have used standart BottomNavigationView as well as this library, but I can't increase the distance between items. Is there a way to do that?
Dennis Zinkovski
  • 1,663
  • 3
  • 22
  • 40
5
votes
1 answer

Changing/removing items of Bottom bar in android

I have an activity with a BottomNavigationView, I need to switch items (remove old and add new ones) of my bottomNavigationView when a button is clicked. I tried all these options but none of them is working: …
Amal
  • 71
  • 1
  • 5
4
votes
2 answers

Is there a way to achieve a dynamic height in bottom widget of SliverAppBar

The SliverAppBar has an attribute bottom which has to have preferredSize. Right now I have it returning constant value: ... new SliverAppBar( expandedHeight: _kFlexibleSpaceMaxHeight, flexibleSpace: new FlexibleSpaceBar(.....) ... …
Jerzy Kiler
  • 655
  • 1
  • 8
  • 9
4
votes
1 answer

Android bottom navigation bar customization

I have successfully implementing simple bottom bar and it looks like picture 1. But I wanted to customize it further so it can looks like the bottom bar in Youtube's android apps, which when you clicked in one of the item, it will spread shadowing…
3
votes
2 answers

How to get UITabBar to extend to bottom on iPhone X?

I have tried putting a view down there to see if there is a way to have it be visible in that little area outside the safe zone, but actually it is clipped away. Can anyone provide assistance on this? The only tutorial I have seen mention this…
AppreciateIt
  • 686
  • 2
  • 8
  • 23
2
votes
2 answers

How make Bottombar with custom shape fab button?

I want to make a bottombar with attach fab button like given below image. If anyone knows about that type of different shape button library with a bottom with fab then suggest to me. The image is given below make a bottombar with fab like this.
2
votes
1 answer

React native Bottom Tab Bar style adding bump

Does someone know how to style the Bottom Tab Bar , in order to have something like this ? I'm able to design every item and to design also the entire Bottom bar to add radius on left and right but the difficult part is the little bump above the…
Manu13k
  • 286
  • 4
  • 17
2
votes
0 answers

Android BottomAppBar is not hiding on scroll after changing orientation

In my application I have an activity. By attaching the fragment to the activity I hide the BottomAppBar. So in my Fragment the BottomAppBar is not visible. When I change the orientation from portrait to landscape the BottomAppBar is visible after…
dudi
  • 4,792
  • 3
  • 22
  • 44
2
votes
2 answers

Flutter | How to make custom button of BottomNavigationBar in flutter?

I want make a button with text and icon inside it, with custom background color and custom width. with fix position (not scrollable). would you like to help me please ? here are the code: bottomNavigationBar: BottomNavigationBar( type:…
Roman Traversine
  • 578
  • 3
  • 8
  • 20
1
2 3 4 5