@override
Widget build(BuildContext context) {
return Scaffold(
appBar:AppBar(
title: Text('New project',style: TextStyle(fontSize:25,color: Colors.green,decorationStyle: TextDecorationStyle.dotted ),),
)
body: Center(
child: Column(
children: <Widget>[
Text('How many times pushed'),
Text('ok')
],
),
),
);
}
}
当我尝试运行代码时,在靠近主体的地方出现错误“Expected ',' before this”,解决方案是什么
2条答案
按热度按时间okxuctiv1#
尝试以下代码,在主体开始前添加
,
结果-〉
c0vxltue2#