Questions tagged [flutter-bottomnavigation]
281 questions
-1
votes
0 answers
Problem with BottomNavigation and Pagecontroller when using animateToPage
I have a simple PageView with 3 pages and a BottomNavigationBar.
Code:
class BottomNavigator extends StatefulWidget {
const BottomNavigator({super.key});
@override
State createState() => _BottomNavigatorState();
}
class…

Misha Danilenko
- 1
- 2
-1
votes
1 answer
Want to add background color to each item of Bottom Navigation Bar in Flutter
I have to create a Bottom Navigation Bar with a background for each item like below.

Ashirwad Kumar
- 90
- 1
- 9
-1
votes
2 answers
Displaying current user email
I would like to ask for some help.
I have a login form connected with firebase. I have 3 more pages which display the current user email.
However, I decided to implement a bottom nav menu bar and I am stuck.
As you can see from the picture, I cant…

flutter_dev
- 11
- 5
-1
votes
2 answers
How to create this type of Bottom Navigation?
I am trying to make a Bottom Navigation Bar that looks exactly like this. Since I'm just a beginner to learn flutter, I am having a lot of problems one of which is not able to find the icons so I decided to use other similarly available icons. Now I…

Siddharth Mehra
- 1,691
- 1
- 9
- 32
-1
votes
1 answer
Unable to keep the bottom navbar while moving to other pages flutter
I'm a beginner, I tried this tutorial
https://youtu.be/1ToqYMSnNhA
But when I press the other buttons and it navigates to another screen.. the bottom bar is disappearing. how to make it stick?
I'm getting 'bottom overflowed with infinite pixels ' in…

Pratt
- 1
- 1
-1
votes
2 answers
bottomNavigationBar with CustomScrollView Renderflex Error
I have a CustomScrollView and bottomNavigationBar. The bottomNavigationBar disappears when I scroll up. This is configured via the below AnimatedContainer settings.
height: _bottombarisVisible ? 80 : 0,
Works fine except am encountering the below…

marcusaureliusbrutus
- 129
- 2
- 12
-1
votes
1 answer
How to create this type of bottom navigation bar with curved background?
I have tried some packages and stack with image but it is not working for me. Any help would be great.
Background image with curve is not working.

Jay Tarpara
- 30
- 8
-1
votes
2 answers
How to build a custom bottomNavigationBar in flutter with a centered button?
I have tried so much to build this bottomNavigationBar with the curve and space between icons.
Cannot figure it out.

Khader Murtaja
- 425
- 1
- 5
- 15
-2
votes
1 answer
Flutter BottomNavigationBarItem original color
When i'm using BottomNaviagtionBar with BottomNavigationBarItem the color of selected BottomNavigationBarItem is the color selectedItemColor but i wan't to use the original color, because my image has two different colors when I try to use…

ElBidouilleur
- 1
- 1
-2
votes
1 answer
Flutter: How to change color of bottom navigation icon when drawer is closed?
In my flutter app, I used a bottom navigation bar with 6 options. The sixth option is a menu hamburger icon, which I'm using to open a side drawer.
What I'm struggling to do is:
When the drawer opens or closes, I expect the colour of the hamburger…

Ajay Sharma
- 108
- 1
- 3
-2
votes
1 answer
How to open a screen on flutter bottom navigation bar by passing selected index
I have three screens in my bottom navigation bar. One screen contains to button to the other screen. Normally when i click on the button, I want it to open the respective screen while maintaining the scaffold. This is how I proceeded: I added a…

gunKev
- 1
- 3