Questions tagged [flutter-bottomnavigation]

281 questions
0
votes
1 answer

Add Foggy Effect behind FAB in Flutter

How can i add this foggy effect behind the FAB ? I have tried achieving this using BottomAppBar but the BottomAppBar doesnt accept Transparent Color in LinearGradient I have also tried to reduce the Opacity of BottomAppBar Background but it doesnt…
0
votes
1 answer

How to change the container according to the index of a bottom navigation bar in flutter?

I have this curved navigation bar but I don't know how to change the content of the container according to the index of the page. enter link description here
OKKO
  • 33
  • 8
0
votes
2 answers

How can we launch the url from the bottom naviagtion bar in flutter

I have added the bottom naviagtion bar using the package CubertoBottomBar. I want to launch the new url in other browser by url_launcher package, when I Implement the same it throws me an error as type 'Future' is not a subtype of type 'Widget',…
Mahant
  • 307
  • 1
  • 5
  • 18
0
votes
1 answer

Showing dialog with bottom navigationbar flutter

I want to show Dialog instead of function using bottom navigation bar in flutter.How can I implement that? @override Widget build(BuildContext context) { Widget child = Container(); switch(_selectedIndex) { case 0: …
Axen_Rangs
  • 261
  • 7
  • 19
0
votes
0 answers

Variables reset to default whenever I navigate with the bottomNavigationBar but reappear if I add a new item to my list

The Function of the App It has a two items in the bottom navigation bar where in the first section (Courses) the user can add a list of courses and it will update their overall GPA and highest average for them each time they add a new one. The other…
0
votes
2 answers

Flutter BottomNavigationBar with transparent background

I'm trying to build a BottomNavigationBar and Float Action Button that has no background (transparent) Layout sample Could you guys help to layout for this? Thanks.
vuchau
  • 3
  • 2
0
votes
2 answers

why flutter BottomNavigationBar changes the icon but does not change the page?

Im new to coding and flutter and I have been trying to make my bottomNavigationBar change pages from home page to chatroom but what ever I try is not working , I watched many videos but their bottomNavigationBar is inside their body and when I apply…
0
votes
1 answer

Not able to access bottom tab navigator due to admob ads

I implemented AdMob ads successfully using official package but after implementing I am not able to access bottom tab navigator What to do now?
0
votes
2 answers

Where to write the network call in Flutter?

I have a BottomNavigationBar with 3 tabs. Consider I select a product in an e-commerce app from the pages inside the first BottomNavigationBarItem. I need to see that product in the second BottomNavigationBarItem(cart page). I have written the…
nazaif
  • 53
  • 9
0
votes
1 answer

Is there a way to display the BottomNavigationBar on every View?

I am trying to display the BottomNavigationBar on every View I have, it's working but this is a "dumb" way to do that... I have a custom BottomNavigationBar which I am inserting in every View. var selectedIndex = 0; class CustomBottombar extends…
nani
  • 183
  • 2
  • 15
0
votes
1 answer

Flushbar Compiler problems

I am new to flushbar widget. I build a simple code sample that results on the following compiler errors following some articles and videos on the widget. https://pub.dev/packages/flushbar Most of the examples depend on the onPressed click event. …
0
votes
1 answer

flutter webview bottomnavigation not loading website pages

Im having trouble getting the bottomnavigationbar to load the webview pages This is still all new to me please advice. children: [ WebView(initialUrl:"http://app.com/index.php" ), WebView(initialUrl:"http://app.com/tools.php"…
0
votes
0 answers

How can I persist BottomNavigationBar across all screens in Flutter

I have BottomNavigationBar in flutter & called separate widgets for each tab. For example I am having button into that widget which redirects to new screen, I want that BottomNavigationBar should be persisted in new screen as well. I have checked…
sagarchavan
  • 187
  • 3
  • 14
0
votes
1 answer

how bottomNavigationBar Rebuild same page in flutter by ontab?

I make bottomNavigationBar like below List pages = [ Dashboard(), AllServices(), InformationPage(), ]; int _selectedIndex = 0; Widget _bottomNavigationBar(int selectedIndex) { return BottomNavigationBar( …
Shojaeddin
  • 111
  • 2
  • 16
0
votes
1 answer

How To Fix Bottom navigation in flutter?

How to fix Bottom Navigation in Flutter? MediaQuery.Of() called with context That does not contain a MediaQuery.Bottom Navigation Not working. This code Showing Error What is MediaQuery.Of() called with context That does not contain a…
1 2 3
18
19