Reputation: 25
when I don't initialize
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
it chrome shows the UI, but when I add it displays nothing . How can I solve this error chrome output, code warning
Upvotes: 1
Views: 2441
Reputation: 937
You also have to initialize Firebase in index.html; here is the documentation.
Upvotes: 1