|
@@ -149,11 +149,12 @@ class TitleWidget extends StatelessWidget {
|
|
|
final String? title;
|
|
|
final String? caption;
|
|
|
final bool isTitleH2WithoutLeading;
|
|
|
- const TitleWidget(
|
|
|
- {this.title,
|
|
|
- this.caption,
|
|
|
- required this.isTitleH2WithoutLeading,
|
|
|
- super.key});
|
|
|
+ const TitleWidget({
|
|
|
+ this.title,
|
|
|
+ this.caption,
|
|
|
+ required this.isTitleH2WithoutLeading,
|
|
|
+ super.key,
|
|
|
+ });
|
|
|
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
@@ -189,8 +190,11 @@ class FlexibleSpaceBarWidget extends StatelessWidget {
|
|
|
final String? flexibleSpaceCaption;
|
|
|
final double toolbarHeight;
|
|
|
const FlexibleSpaceBarWidget(
|
|
|
- this.flexibleSpaceTitle, this.flexibleSpaceCaption, this.toolbarHeight,
|
|
|
- {super.key});
|
|
|
+ this.flexibleSpaceTitle,
|
|
|
+ this.flexibleSpaceCaption,
|
|
|
+ this.toolbarHeight, {
|
|
|
+ super.key,
|
|
|
+ });
|
|
|
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|