main function
Implementation
void main() {
WidgetsFlutterBinding.ensureInitialized();
SharedPreferences.getInstance().then((value) {
prefs = value;
prefs.reload();
runApp(_AppWrapper(
appHome:
!getIsNewUser() ? const MainApp() : launchCarousel()));
});
}