Questions tagged [flutter-bottomnavigation]

281 questions
0
votes
1 answer

Create BottomNavigationBar with FAB in the middle

In Flutter, I can only show or hide labels depending on selecting the item or unselecting it. Previously in Flutter, label used to be a widget taking Text so I could change text size using style parameter in text widget. Now label is just a string…
0
votes
0 answers

How can I change selectedLabelStyle and selectedItemColor when I press just route to another but did not change

here code How can I change selectedLabelStyle and selectedItemColor when I press just route to another but did not change when I selected they can route to that page but still not change i think it is problem in setState but i can not fix I'm…
0
votes
2 answers

There are multiple heroes that share the same tag within a subtree. Within each subtree for which heroes are to be animated

This error occur whenever i click the Google Sign-In button. enter image description here. After entering the google sign-in button, it should navigate the user to a bottom navigation bar enter image description here. If the user haven't sign out,…
0
votes
1 answer

Fixed Bottom Navigation Bar for particular pages - Flutter

I have 6 pages on my flutter mobile app. They are EmploymentListPage, ClaimsPage, NotificationsPage, SettingsPage, EmploymentDetailsPage and EmploymentClaimsPage. EmploymentListPage, ClaimsPage, NotificationsPage and SettingsPage can be navigated…
0
votes
1 answer

how to change position of icon in bottom navigation bar in flutter?

I want to build something like this What I build so far is this, but I can not move it up I tired using stack to move the icon up but it does not work my code BottomNavigationBarItem( label: 'AppStrings.home', …
KIRAx2000
  • 111
  • 1
  • 10
0
votes
0 answers

Flutter Bottom Navigaton

I want bottom navigation to change if I press any button or link on other tab. For example If I am on this page and I click on "weekdays" list item, I go to this next page. Now, my first page is in "Home" tab and my second page is in…
Jeet Vyas
  • 31
  • 3
0
votes
1 answer

(Flutter) Android Navigation bar does not disappear after some time when swiped from below

I want users to still see the status bar so I have done it like this: if (Platform.isAndroid) { SystemChrome.setEnabledSystemUIMode( SystemUiMode.manual, overlays: [SystemUiOverlay.top], ); } When user swipes from below, the…
0
votes
3 answers

how to use PageView and Bottom Navigator together?

I want to access page view as well as the bottom navigator with the same controller so that I can have that page swipe action that page view has by default. I wanted to link pageview screens to the bottom navigator with the controller to have a…
0
votes
1 answer

Change BottomNavBar colour Flutter

I have a flutter website with a bottom navigation bar, the bar however is white with white text. I don't know how to fix it so the icons and text can be visible. I tried setting the background colour but it keeps ignoring me and setting it to…
0
votes
1 answer

Go to specific tab from other page

I am using DefaultTabController and BottomNavigationBar to show my tabs. When I want to go to homepage from a different page. For e.g, from SubmitForm() page, I will call navigation back to a specific tab index. In this case, I want to go to…
0
votes
2 answers

flutter bottom navigation bar icon not showing

When I am used BottomNavigationBarItem, I can't showing my navigation icons. I am trying this code: import 'package:flutter/material.dart'; import 'package:task_manager/style/style.dart'; BottomNavigationBar AppBottomNav(currentIndex, OnItemTapped)…
0
votes
0 answers

How do I create a button with animation in the center of the bottom navigation in Flutter?

enter image description here I want to use this animation for Bottom Navigation on Flutter, but I don't know what to do. There are a total of 5 tabs including the button with that animation applied. Animation button is centered. Help me,…
0
votes
0 answers

How to stretch bottom nav bar to take full height

enter image description here In the image, at the bottom, how do I fill it with bottom nav bar? I don't know what it is called, so not able to search properly.
0
votes
0 answers

Floating action button not moving up with snackbar flutter

I am struggling making a FAB move up when a snackbar is showing. Here is my set up. I have my main page with a bottom navigation bar with 3 items. The first item is basically a widget with a ListView and a floating action button. Once you click an…
0
votes
0 answers

Flutter navigate with an ElevatedButton to another side of CurvedNavigationBar

I use the CurvedNavigationBar V1.0.3 to navigate between 5 sides. each of them has an extra dart file. The bottombar is in my main.dart. I want to use a button in /body which leads to another side and change also to the right icon in…