ScaffoldFrame constructor

const ScaffoldFrame({
  1. Key? key,
  2. dynamic title,
  3. Widget? body,
  4. Color? backgroundColor,
  5. EdgeInsets? contentPadding,
  6. VoidCallback? onRefresh,
  7. Widget? floatingActionButton,
  8. Widget? bottomNavigationBar,
  9. List<Widget> actions = const [],
})

Implementation

const ScaffoldFrame({
  super.key,
  this.title,
  this.body,
  this.backgroundColor,
  this.contentPadding,
  this.onRefresh,
  this.floatingActionButton,
  this.bottomNavigationBar,
  this.actions = const [],
});