Screen constructor
const
Screen({
- Widget child = const SizedBox.shrink(),
- Widget? sidebar,
- Widget? header,
- Widget? fab,
- Widget? foreground,
- Widget? background,
- bool gutter = true,
- String? title,
- String? subtitle,
- List<
Widget> actions = const <Widget>[], - BarBackButtonMode backButtonMode = BarBackButtonMode.never,
- void onBack()?,
- Key? key,
Implementation
const Screen({
this.child = const SizedBox.shrink(),
this.sidebar,
this.header,
this.footer,
this.fab,
this.foreground,
this.background,
this.gutter = true,
this.title,
this.subtitle,
this.actions = const <Widget>[],
this.backButtonMode = BarBackButtonMode.never,
this.onBack,
super.key,
});