Skip to main content

Posts

Showing posts from January, 2022

Flutter fancy bottom navbar in flutter without any plugin

 Flutter fancy bottom navbar in flutter without any plugin Flutter fancy bottom navbar in flutter without any plugin please see the coding part for better understanding return Scaffold ( body : PageStorage ( child : currentScreen, bucket : bucket, ), floatingActionButton : InkWell ( onTap : () { setState (() { currentScreen = const DashBoardLanding (); // if user taps on this dashboard tab will be active currentTab = - 1 ; }); }, child : Container ( width : 56.0 , height : 56.0 , decoration : const BoxDecoration ( shape : BoxShape .circle, gradient : LinearGradient ( colors : [ Color ( 0xffDFE9F5 ), Color ( 0xffF8D7E7 ), ], ), ),