AppScaffold constructor

const AppScaffold(
  1. {Key? key,
  2. String? appBarTitle,
  3. required Widget child,
  4. List<Widget>? actions,
  5. bool showBack = true,
  6. bool titleCenter = true,
  7. Color? scaffoldBackgroundColor,
  8. Widget? bottomNavigationBar,
  9. bool showLoader = true,
  10. Widget? titleWidget,
  11. dynamic onPressed(
      )?}
    )

    Implementation

    const AppScaffold(
        {super.key,
        this.appBarTitle,
        required this.child,
        this.actions,
        this.showBack = true,
        this.titleCenter = true,
        this.scaffoldBackgroundColor,
        this.bottomNavigationBar,
        this.showLoader = true,
        this.titleWidget,
        this.onPressed});