skip to Main Content

Flutter – Bottom navigation bar is floating on iOS

My bottom navigation is malformed when I run my Flutter app on iOS. It seems to be floating: My scaffold looks like this: Scaffold( appBar: getAppbar(), drawer: getMainDrawer(context), floatingActionButton: ..., floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked, body: SafeArea( top: false, bottom: false, child: _widgetOptions.elementAt(_selectedIndex),…

VIEW QUESTION
Back To Top
Search