diff --git a/example/lib/main.dart b/example/lib/main.dart index 1aac377..3055f36 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -1,20 +1,7 @@ import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; import 'package:settings_tiles/settings_tiles.dart'; void main() { - WidgetsFlutterBinding.ensureInitialized(); - - // Display the application behind the system's notifications bar and navigation bar - // See https://github.com/flutter/flutter/issues/40974 - // See https://github.com/flutter/flutter/issues/34678 - SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge); - SystemChrome.setSystemUIOverlayStyle( - const SystemUiOverlayStyle( - systemNavigationBarColor: Colors.transparent, - ), - ); - runApp(const MyApp()); }