main.dart
unknown
plain_text
4 years ago
623 B
33
Indexable
import 'package:flutter/material.dart'; import 'package:flutter_devs_firebase/splash_screen.dart'; import 'package:firebase_core/firebase_core.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, theme: ThemeData.dark(), home: const Splash(), ); } }
Editor is loading...