FastHomePageLayout constructor
const
FastHomePageLayout({
- Key? key,
- required List<
Widget> children, - double appBarExpandedHeight = kFastExpandedHeight,
- LinearGradient? appBarBackgroundLinearGradient,
- Color? appBarBackgroundColor,
- Widget? floatingActionButton,
- Widget? appBarDecoration,
- ScrollController? scrollController,
- EdgeInsetsGeometry? contentPadding,
- String? subtitleText,
- String? titleText,
- List<
Widget> ? actions, - Widget? leading,
Implementation
const FastHomePageLayout({
super.key,
required this.children,
this.appBarExpandedHeight = kFastExpandedHeight,
this.appBarBackgroundLinearGradient,
this.appBarBackgroundColor,
this.floatingActionButton,
this.appBarDecoration,
this.scrollController,
this.contentPadding,
this.subtitleText,
this.titleText,
this.actions,
this.leading,
}) : assert(
appBarExpandedHeight >= kFastExpandedHeight ? true : false,
);