TransparentScaffold constructor
const
TransparentScaffold({
- Key? key,
- required String title,
- bool centerTitle = true,
- Widget? leading,
- List<
Widget> ? actions, - double? leadingWidth,
- Widget? body,
- Color? appBarBackgroundColor,
- double? elevation,
- PreferredSizeWidget? bottom,
- IconThemeData? iconTheme,
- Widget? appbarLeadingIcon,
- Color? backgroundColor,
- String? subTitle,
- 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);