Answers for "how to create flutter firebase project"

3

initialize app flutter with firebase

import 'package:firebase_core/firebase_core.dart';

void main() async {
   WidgetsFlutterBinding.ensureInitialized();
   await Firebase.initializeApp();
   runApp(MyApp());
}
Posted by: Guest on May-07-2021
3

add firebase to flutter

To add firebase to flutter watch this video

https://www.youtube.com/watch?v=EXp0gq9kGxI&feature=emb_title
Posted by: Guest on March-06-2021

Code answers related to "how to create flutter firebase project"

Browse Popular Code Answers by Language