TkfScaffold constructor

const TkfScaffold({
  1. required Function onWillPop,
  2. required Widget body,
  3. Key? key,
  4. PreferredSize? appBar,
  5. bool disableScrollView = false,
  6. Widget? drawer,
  7. GlobalKey<ScaffoldState>? scaffoldKey,
  8. bool useSafeAre = true,
  9. Color backgroundColor = Colors.white,
  10. Widget? fab,
  11. Widget? bottomNavBar,
})

Implementation

const TkfScaffold(
    {required this.onWillPop,
    required this.body,
    super.key,
    this.appBar,
    this.disableScrollView = false,
    this.drawer,
    this.scaffoldKey,
    this.useSafeAre = true,
    this.backgroundColor = Colors.white,
    this.fab,
    this.bottomNavBar});