master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 33797e4dbf - Show all commits

View File

@ -29,7 +29,10 @@ class AppBarLayout extends Layout {
@override @override
Widget build(BuildContext context) => Scaffold( Widget build(BuildContext context) => Scaffold(
appBar: context.components.appBar.configure(title: title), appBar: PreferredSize(
preferredSize: const Size.fromHeight(60),
child: context.components.appBar.configure(title: title),
),
body: body, body: body,
); );
} }

View File

@ -32,7 +32,10 @@ class FrameLayout extends Layout {
@override @override
Widget build(BuildContext context) => Scaffold( Widget build(BuildContext context) => Scaffold(
appBar: context.components.appBar.configure(title: title), appBar: PreferredSize(
preferredSize: const Size.fromHeight(60),
child: context.components.appBar.configure(title: title),
),
body: body, body: body,
bottomNavigationBar: context.components.bottomNavigationBar.configure( bottomNavigationBar: context.components.bottomNavigationBar.configure(
currentIndex: currentIndex, currentIndex: currentIndex,