master #81
@ -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(
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user