flutter_easyloading
flutter_easyloading copied to clipboard
'overlayEntry != null': You should call EasyLoading.init() in your MaterialApp
flutter_boost中使用,初始化不成功
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.
For me what worked was:
MaterialApp(
debugShowCheckedModeBanner: false,
....
builder: (context, child) {
return EasyLoading.init()(context, child);
},
)
Since the init method returns a function, it needs to be called, in order for it to be started.
I don't resolve problem
For me what worked was:
MaterialApp( debugShowCheckedModeBanner: false, .... builder: (context, child) { return EasyLoading.init()(context, child); }, )
Since the init method returns a function, it needs to be called, in order for it to be started.
我试了,还是不行
I don't resolve problem
我也是
Same issue here
help
see #83
help me ! i try #83 but still not work