class MyAppBar extends StatelessWidget {
MyAppBar({this.title});
报错 改为
class MyAppbar extends StatelessWidget {
MyAppbar({required this.title});
class MyAppBar extends StatelessWidget {
MyAppBar({this.title});
报错 改为
class MyAppbar extends StatelessWidget {
MyAppbar({required this.title});
本文标题:flutter 基础 Widget
本文链接:https://www.haomeiwen.com/subject/xkaaartx.html
网友评论