Flutter Getx Providers get fired twice

Issue I’m using the Getx package to manage my app state, there is something wired happening, all the providers get initialized multiple times this is my initialization method Future<void> main() async { WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized(); FlutterNativeSplash.preserve(widgetsBinding: widgetsBinding); SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); ErrorWidget.builder

Continue reading