buildScafoldForBottomBar method
Implementation
Scaffold buildScafoldForBottomBar({required String platform}) {
return Scaffold(
appBar: widget.parentAppbar,
body: SafeArea(
child: Column(
children: [
Expanded(
child: PageView(
physics: const NeverScrollableScrollPhysics(),
onPageChanged: (indx) => setState(() => _selectedIndex = indx),
controller: floatingTabBarPageViewController,
children: getTabScreenList(),
),
),
],
),
),
bottomNavigationBar: nonFloatingBottomBar(),
);
}