onCreateScaffold method

Widget onCreateScaffold()

Implementation

Widget onCreateScaffold() {
  return Scaffold(
      body: IndexedStack(
        index: currentIndex,
        children: childrens,
      ),
      bottomNavigationBar: onCreateTabbar());
}