IScaffold constructor

const IScaffold({
  1. Key? key,
  2. required Widget body,
  3. PreferredSizeWidget? appBar,
  4. bool? resizeToAvoidBottomInset,
  5. SystemUiOverlayStyle? systemUiOverlayStyle,
  6. Color? backgroundColor,
  7. Widget? floatingActionButton,
  8. FloatingActionButtonLocation? floatingActionButtonLocation,
  9. FloatingActionButtonAnimator? floatingActionButtonAnimator,
})

Implementation

const IScaffold({
  Key? key,
  required this.body,
  this.appBar,
  this.resizeToAvoidBottomInset,
  this.systemUiOverlayStyle,
  this.backgroundColor,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.floatingActionButtonAnimator,
}) : super(key: key);