mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04: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
1 changed files with 3 additions and 6 deletions
|
@ -55,12 +55,9 @@ class ListOverlay extends StatelessWidget {
|
|||
controller: controller,
|
||||
),
|
||||
if (footer != null)
|
||||
SizedBox(
|
||||
height: footer!.height,
|
||||
child: Padding(
|
||||
padding: footer!.padding,
|
||||
child: SizedBox.expand(child: footer!.widget),
|
||||
),
|
||||
Padding(
|
||||
padding: footer!.padding,
|
||||
child: footer!.widget,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue