omniverseMain function

dynamic omniverseMain()

This is the main app and the first thing you call to ensure theme and language persistence

Implementation

omniverseMain() async {
  WidgetsFlutterBinding.ensureInitialized();
  Get.put(OmniversalHomeController());
  setPathUrlStrategy();
  await initializeDateFormatting();
  await GetStorage.init();
  SystemChrome.setSystemUIOverlayStyle(
      const SystemUiOverlayStyle(statusBarColor: Colors.black));
}