feat(ui_components): add centerTitle property to app bar component

This commit is contained in:
2023-02-22 11:37:29 +01:00
parent dba14088b0
commit 4811ed8998
3 changed files with 7 additions and 0 deletions
@@ -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(