From ab088be159fc457f517aea3eeb64836942429fb4 Mon Sep 17 00:00:00 2001 From: Jorge Pabon Date: Wed, 28 Jun 2023 09:19:34 -0500 Subject: [PATCH] Fix: Wrong parent for expanded (main content widget) --- lib/app/pages/main_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app/pages/main_page.dart b/lib/app/pages/main_page.dart index 4c85186c8..ac20de304 100644 --- a/lib/app/pages/main_page.dart +++ b/lib/app/pages/main_page.dart @@ -275,7 +275,7 @@ class _MainPageState extends State child: Stack( alignment: AlignmentDirectional.bottomEnd, children: [ - Expanded(child: buildMainWidget()), + Column(children: [Expanded(child: buildMainWidget())]), _cubits.repositories.builder((repos) => RepositoryProgress(repos.currentRepo?.maybeCubit)) ]),