onCreateScaffold method
Implementation
Scaffold? onCreateScaffold() {
final body = onCreateBody();
return Scaffold(
backgroundColor: backgroundColor,
appBar: onCreateAppBar(),
body: body != null ? SafeArea(child: body) : null);
}