GradientScaffold constructor

const GradientScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. required Widget body,
  4. Widget? bottomNavigationBar,
  5. Widget? floatingActionButton,
  6. FloatingActionButtonLocation? floatingActionButtonLocation,
  7. bool resizeToAvoidBottomInset = true,
})

Implementation

const GradientScaffold({
  super.key,
  this.appBar,
  required this.body,
  this.bottomNavigationBar,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.resizeToAvoidBottomInset = true,
});