master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
3 changed files with 7 additions and 0 deletions
Showing only changes of commit 4811ed8998 - Show all commits

View File

@ -16,12 +16,15 @@ class $CustomAppBarCWProxyImpl implements $AppBarComponentCWProxy {
@override
CustomAppBar actions(List<Widget>? actions) => this(actions: actions);
@override
CustomAppBar centerTitle(bool? centerTitle) => this(centerTitle: centerTitle);
@override
CustomAppBar key(Key? key) => this(key: key);
@override
CustomAppBar call({
TextWrapper? title,
Widget? leading,
List<Widget>? actions,
bool? centerTitle,
Key? key,
}) =>
CustomAppBar(

View File

@ -27,9 +27,11 @@ abstract class AppBarComponent extends Component
this.title,
this.leading,
this.actions,
this.centerTitle,
super.key,
});
final TextWrapper? title;
final bool? centerTitle;
final Widget? leading;
final List<Widget>? actions;
}

View File

@ -10,11 +10,13 @@ abstract class $AppBarComponentCWProxy {
AppBarComponent title(TextWrapper? title);
AppBarComponent leading(Widget? leading);
AppBarComponent actions(List<Widget>? actions);
AppBarComponent centerTitle(bool? centerTitle);
AppBarComponent key(Key? key);
AppBarComponent call({
TextWrapper? title,
Widget? leading,
List<Widget>? actions,
bool? centerTitle,
Key? key,
});
}