firebase Flutter在android studio中运行代码时不显示任何内容

iyfjxgzm  于 2023-04-22  发布在  Flutter
关注(0)|答案(1)|浏览(170)

它应该是显示“你好世界”在蓝色的颜色,但当我运行的代码,它不显示任何东西.唯一的事情是显示的项目标题,没有其他人可以告诉什么是问题enter image description here

`import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
Future main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp();
  runApp(const MyApp());
}

 class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: Text('Hello World!',
          style: TextStyle(
            color: Colors.blue, // set the text color to blue
          ),
          ),
        ),
      ),
    );
  }}`

它应该是显示“你好,世界”在蓝色的颜色,但当我运行的代码,它不显示任何东西。唯一的事情是显示的项目标题,没有其他

wtzytmuj

wtzytmuj1#

您正在Flutter web上使用Firebase。在运行应用程序之前,您需要对web/index.html文件进行一些更改。您必须导入Firebase Javascript SDK并初始化Firebase。
有关更详细的解释,请查看官方Firebase文档。
https://firebase.flutter.dev/docs/manual-installation/web/
或者因为这一个可能是过时的,看看更新的设置说明:
https://firebase.google.com/docs/flutter/setup?platform=web

相关问题