Home > Software engineering >  is this the right method instead using bottom bar navigation
is this the right method instead using bottom bar navigation

Time:04-10

I am new to Flutter. As I understand Bottom Bar Navigation is used for quick navigation between the top-level views of an app. but in my situation, I want to use like this which only button PAY can be clicked. enter image description here

so is it okay if Im not using BottomBar instead i use as container and place it at bottom?

CodePudding user response:

ya ,The best way is that you can create a container and the button and place it child of bottomNavigationBar so the flutter is automaticaly align it in bottom side

bottomNavigationBar: Container(child: yourcodeHere),

  • Related