mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
Fixes #141
removed the SizedBox. Leaving the size to adjust automatically depending on the footer's content.
This commit is contained in:
parent
7270c578e9
commit
9fc13c7d62
@ -55,12 +55,9 @@ class ListOverlay extends StatelessWidget {
|
|||||||
controller: controller,
|
controller: controller,
|
||||||
),
|
),
|
||||||
if (footer != null)
|
if (footer != null)
|
||||||
SizedBox(
|
Padding(
|
||||||
height: footer!.height,
|
padding: footer!.padding,
|
||||||
child: Padding(
|
child: footer!.widget,
|
||||||
padding: footer!.padding,
|
|
||||||
child: SizedBox.expand(child: footer!.widget),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user