Skip to content

Commit

Permalink
Fix: Wrong parent for expanded (main content widget)
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Pabon committed Jun 28, 2023
1 parent 02f7fea commit ab088be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app/pages/main_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class _MainPageState extends State<MainPage>
child: Stack(
alignment: AlignmentDirectional.bottomEnd,
children: <Widget>[
Expanded(child: buildMainWidget()),
Column(children: [Expanded(child: buildMainWidget())]),
_cubits.repositories.builder((repos) =>
RepositoryProgress(repos.currentRepo?.maybeCubit))
]),
Expand Down

0 comments on commit ab088be

Please sign in to comment.