I've tried to do WidgetsFlutterBinding.ensureInitialized() before runApp() but am still getting the same problem.Please help
my main:
"void main() {WidgetsFlutterBinding.ensureInitialized();runApp(MaterialApp(initialRoute'/',
routes:
{
'/':(context) => Splash(),
'/register' : (context) => Register(),
'/login' : (context) => Login(),
},
debugShowCheckedModeBanner: false,));}"