Skip to content

Commit

Permalink
fix status bar immersion
Browse files Browse the repository at this point in the history
  • Loading branch information
Predidit committed Aug 27, 2024
1 parent 727f7e7 commit 3fddeb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/pages/menu/side_menu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class _SideMenu extends State<SideMenu> {

@override
Widget build(BuildContext context) {
var themeData = Theme.of(context);
return ChangeNotifierProvider(
create: (context) => SideNavigationBarState(),
child: Scaffold(
Expand Down
6 changes: 3 additions & 3 deletions lib/pages/video/video_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,9 @@ class _VideoPageState extends State<VideoPage>
onPopInvoked: (bool didPop) async {
onBackPressed();
},
child: SafeArea(
child: Scaffold(
body: Observer(builder: (context) {
child: Scaffold(
body: SafeArea(
child: Observer(builder: (context) {
return Column(
children: [
Container(
Expand Down

0 comments on commit 3fddeb3

Please sign in to comment.