AppScaffold constructor
const
AppScaffold(- {Key? key,
- String? appBarTitle,
- required Widget child,
- List<Widget>? actions,
- bool showBack = true,
- bool titleCenter = true,
- Color? scaffoldBackgroundColor,
- Widget? bottomNavigationBar,
- bool showLoader = true,
- Widget? titleWidget,
- 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});