packages/uikit/create #129

Merged
malo merged 5 commits from packages/uikit/create into master 2023-02-09 17:11:44 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 6bad9a8a05 - Show all commits

View File

@ -13,6 +13,6 @@ class CustomAppBar extends AppBarComponent with $CustomAppBarCWMixin {
@override
Widget build(BuildContext context) => AppBar(
title: Text(title ?? ''),
title: Text(title?.text ?? ''),
);
}

View File

@ -36,7 +36,7 @@ class AppBarLayout extends Layout {
appBar: PreferredSize(
preferredSize: const Size.fromHeight(60),
child: context.components.appBar?.copyWith(
title: title,
title: title.wrap(),
leading: leading,
actions: actions,
) ??

View File

@ -38,7 +38,7 @@ class FrameLayout extends Layout {
appBar: PreferredSize(
preferredSize: const Size.fromHeight(60),
child: context.components.appBar?.copyWith(
title: title,
title: title.wrap(),
leading: leading,
actions: actions,
) ??