master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
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 @override
Widget build(BuildContext context) => AppBar( Widget build(BuildContext context) => AppBar(
title: Text(title ?? ''), title: Text(title?.text ?? ''),
); );
} }

View File

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

View File

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