FaResponsiveScaffold constructor

const FaResponsiveScaffold({
  1. required Widget body,
  2. Widget? drawer,
  3. EdgeInsets? padding,
  4. Color? backgroundColor,
  5. Widget? title,
  6. List<Widget> actions = const [],
  7. Key? key,
})

Implementation

const FaResponsiveScaffold(
    {required this.body,
    this.drawer,
    this.padding,
    // this.appbar,
    this.backgroundColor,
    this.title,
    this.actions = const [],
    super.key});