Skip to content

Commit

Permalink
fix(neon): Fix notch clipping content
Browse files Browse the repository at this point in the history
Signed-off-by: jld3103 <[email protected]>
  • Loading branch information
provokateurin committed Nov 1, 2023
1 parent 3299d7e commit 17c7b87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/neon/neon/lib/src/pages/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ class _HomePageState extends State<HomePage> {
return const SizedBox();
}

return activeAppIDSnapshot.requireData.page;
return SafeArea(
child: activeAppIDSnapshot.requireData.page,
);
},
);
},
Expand Down

0 comments on commit 17c7b87

Please sign in to comment.