import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'oto_client_app.dart'; Future applyFullscreenMode() async { await SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky); SystemChrome.setSystemUIOverlayStyle( const SystemUiOverlayStyle( statusBarColor: Colors.transparent, systemNavigationBarColor: Colors.transparent, systemNavigationBarDividerColor: Colors.transparent, ), ); } Future bootstrapOtoClient() async { await applyFullscreenMode(); } Future runOtoClient() async { WidgetsFlutterBinding.ensureInitialized(); await bootstrapOtoClient(); runApp(const OtoClientApp()); }