AppScaffold constructor

const AppScaffold({
  1. Key? key,
  2. Key? scaffoldKey,
  3. required PreferredSizeWidget appBar,
  4. Drawer? drawer,
  5. Widget? bottomNavigationBar,
  6. Widget? floatingActionButton,
  7. FloatingActionButtonLocation floatingActionButtonLocation = FloatingActionButtonLocation.endFloat,
  8. double? contentPadding = 10.0,
  9. required Widget body,
})

Implementation

const AppScaffold(
    {super.key,
    this.scaffoldKey,
    required this.appBar,
    this.drawer,
    this.bottomNavigationBar,
    this.floatingActionButton,
    this.floatingActionButtonLocation = FloatingActionButtonLocation.endFloat,
    this.contentPadding = 10.0,
    required this.body});