Merge pull request #197 from MikeWallaceDev/fix_application_menu_size_141

Fix application menu size
This commit is contained in:
AppFlowy.IO 2021-12-24 17:08:33 +08:00 committed by GitHub
commit 547be89b72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),
),
), ),
], ],
), ),