MultiPlatformScaffold constructor

const MultiPlatformScaffold({
  1. Key? key,
  2. Widget? floatingActionButton,
  3. Color? backgroundColor,
  4. Color? appBarColor,
  5. PreferredSizeWidget? appBar,
  6. bool? resizeToAvoidBottomInset,
  7. List<Widget>? actions,
  8. required Widget? body,
  9. Widget? macOsLeading,
  10. String? title,
  11. List<ToolbarItem>? macOsActions,
})

Implementation

const MultiPlatformScaffold(
    {super.key,
      this.floatingActionButton,
      this.backgroundColor,
      this.appBarColor,
      this.appBar,
      this.resizeToAvoidBottomInset,
      this.actions,
      required this.body,
      this.macOsLeading,
      this.title,
      this.macOsActions});