GetScaffold constructor

const GetScaffold({
  1. Key? key,
  2. Widget? body,
  3. Widget? floatingActionButton,
  4. PreferredSizeWidget? appBar,
  5. Widget? drawer,
  6. Widget? bottomNavigationBar,
  7. Color? backgroundColor,
  8. bool resizeToAvoidBottomInset = true,
  9. FloatingActionButtonLocation? floatingActionButtonLocation,
  10. FloatingActionButtonAnimator? floatingActionButtonAnimator,
})

Implementation

const GetScaffold({
  super.key,
  this.body,
  this.floatingActionButton,
  this.appBar,
  this.drawer,
  this.bottomNavigationBar,
  this.backgroundColor,
  this.resizeToAvoidBottomInset = true,
  this.floatingActionButtonLocation,
  this.floatingActionButtonAnimator,
});