Skip to content

Commit

Permalink
make bars transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Sep 27, 2023
1 parent 72ae132 commit 96736af
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/ui/views/export_settings/export_settings_view.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_i18n/flutter_i18n.dart';
import 'package:revanced_manager/ui/views/export_settings/export_settings_viewmodel.dart';
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
Expand All @@ -10,6 +11,14 @@ class ExportSettingsView extends StatelessWidget {

@override
Widget build(BuildContext context) {
SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle(
systemNavigationBarColor: Colors.black.withOpacity(0.002),
statusBarColor: Colors.black.withOpacity(0.002),
),
);
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);

return AlertDialog(
title: I18nText('exportSettingsView.widgetTitle'),
content: I18nText('exportSettingsView.description'),
Expand Down

0 comments on commit 96736af

Please sign in to comment.