Flutter how to load a future function in main function

Code examples

0
0

flutter how to load a future function in main function

Add this:

WidgetsFlutterBinding.ensureInitialized();
Before every single future functions in your main function

Example:
void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await FutureFunction();

  runApp(
    MaterialApp(
      home: MyApp(),
    ),
  );
}

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................