TransparentScaffold constructor

const TransparentScaffold({
  1. Key? key,
  2. required String title,
  3. bool centerTitle = true,
  4. Widget? leading,
  5. List<Widget>? actions,
  6. double? leadingWidth,
  7. Widget? body,
  8. Color? appBarBackgroundColor,
  9. double? elevation,
  10. PreferredSizeWidget? bottom,
  11. IconThemeData? iconTheme,
  12. Widget? appbarLeadingIcon,
  13. Color? backgroundColor,
  14. String? subTitle,
  15. Widget? subTitleWidget,
})

Implementation

const TransparentScaffold(
    {Key? key,
    required this.title,
    this.centerTitle = true,
    this.leading,
    this.actions,
    this.leadingWidth,
    this.body,
    this.appBarBackgroundColor,
    this.elevation,
    this.bottom,
    this.iconTheme,
    this.appbarLeadingIcon,
    this.backgroundColor,
    this.subTitle,
    this.subTitleWidget})
    : super(key: key);