UFUScaffold constructor

const UFUScaffold({
  1. Key? key,
  2. bool resizeToAvoidBottomInset = true,
  3. BoxDecoration? backgroundDecoration,
  4. PreferredSizeWidget? appBar,
  5. Widget? drawer,
  6. Widget? body,
  7. FloatingActionButtonLocation? floatingActionButtonLocation,
  8. Widget? floatingActionButton,
  9. Widget? bottomNavigationBar,
  10. Widget? bottomSheet,
})

Implementation

const UFUScaffold({
  super.key,
  this.resizeToAvoidBottomInset = true,
  this.backgroundDecoration,
  this.appBar,
  this.drawer,
  this.body,
  this.floatingActionButtonLocation,
  this.floatingActionButton,
  this.bottomNavigationBar,
  this.bottomSheet,
});