我正在学习扑动,我从最基本的开始。我没有用材料应用。设置整个屏幕背景颜色的好方法是什么?
以下是我目前掌握的信息:
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new Center(child: new Text("Hello, World!"));
}
}
我的一些问题是:
谢谢你的帮助!