我看过其他帖子,但都没有帮助。 我刚刚安装了Android Studio和Flutter,一直在关注YouTube上的教程,并使用了该教程的确切代码。它可以在视频中播放,但不能在我的PC上播放。
总会说“ home”不是命名参数!
颤抖的医生说一切都很好。
你能帮忙吗?
import 'package:flutter/material.dart';
void main () {
runApp (new Material (
color: Colors.amber,
home: Textclass(),
));
}
class Textclass extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Center (
child: new Text (
"Ahmad", textDirection: TextDirection.ltr, style: new TextStyle(fontSize: 50, fontWeight: FontWeight.w600),
),
);
}
}
答案 0 :(得分:0)
您应该使用MaterialApp()而不是Material()
void main () {
runApp (new MaterialApp (
color: Colors.amber,
home: Textclass(),
));
}
MaterialApp具有属性“ home”。