它应该是显示“你好世界”在蓝色的颜色,但当我运行的代码,它不显示任何东西.唯一的事情是显示的项目标题,没有其他人可以告诉什么是问题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
),
),
),
),
);
}}`
它应该是显示“你好,世界”在蓝色的颜色,但当我运行的代码,它不显示任何东西。唯一的事情是显示的项目标题,没有其他
1条答案
按热度按时间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