background method
Override to specify the background. This is rendered behind the body.
Implementation
Widget background(BuildContext context) {
return Container(
color: Theme.of(context).colorScheme.surface,
);
}
Override to specify the background. This is rendered behind the body.
Widget background(BuildContext context) {
return Container(
color: Theme.of(context).colorScheme.surface,
);
}