onCreateScaffold method

Widget onCreateScaffold()

Implementation

Widget onCreateScaffold() {
  return Scaffold(
      body: IndexedStack(
        index: currentIndex,
        children: childrens,
      ),
      bottomNavigationBar: Container(
        color: bottomNavigationBarColor,
        child: SafeArea(
          child: SizedBox(
            height: UI.screen.tabBarHeight,
            child: onCreateTabbar(),
          ),
        ),
      ));
}