SafeScaffold constructor

const SafeScaffold({
  1. PreferredSizeWidget? appBar,
  2. Color? backgroundColor,
  3. Widget? body,
  4. FloatingActionButton? floatingActionButton,
  5. Widget? bottomNavigationBar,
  6. Key? key,
})

Creates a SafeScaffold with some commonly used f.Scaffold parameters.

Implementation

const SafeScaffold({
  this.appBar,
  this.backgroundColor,
  this.body,
  this.floatingActionButton,
  this.bottomNavigationBar,
  f.Key? key,
}) : super(key: key);