skip to Main Content

Flutter app shows a blank screen after integrating Firebase

the app still only shows a blank screen. Here is my main app code: import 'package:flutter/material.dart'; import 'package:firebase_core/firebase_core.dart'; void main() async { await Firebase.initializeApp(); runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold(…

VIEW QUESTION

Flutter native splash screen keep showing default splash

I have added the flutter_native_splash package inside my depoendancies and have added this native_splash code in my pubspec.yaml file flutter_native_splash: ^2.4.0 flutter_native_splash: color: "#FFFFFF" image: assets/images/Logo.png android_12: color: "#FFFFFF" image: assets/images/Logo.png android: true ios: true web: false and the results…

VIEW QUESTION
Back To Top
Search