flutter分号还是逗号
Posted sendling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter分号还是逗号相关的知识,希望对你有一定的参考价值。
↵
小结下flutter分号还是逗号,开始的时候都不知道到底要输入哪个符号
,还是有点乱,供自己记录查看下
MaterialApp ();分号好像除了这个大部分逗号,ListTile();长列表动态时候分号
Center(),
Scaffold(),
AppBar(),
Container(),
ListView(),
children: <Widget>[ ],
Column(),
MaterialApp->Scaffold
home:Scaffold(
appBar: AppBar(
title: Text(title),
),
//添加容器
body: Container(),或者ListView
Container含 margin,heght,child
child 含ListView或者Column
Column含有children
ListView 含scrollDirection方向 children子函数
children含 <Widget>[],
<Widget>[],含有Container或者ListTile
ListTile(
//添加图标
leading: Icon(Icons.alarm),
//添加文本
title: Text(‘Alarm‘),
),
ListTile();长列表动态时候
以上是关于flutter分号还是逗号的主要内容,如果未能解决你的问题,请参考以下文章
将中文文章翻译为英文时,如果文章中有分号,那翻译为英文时用句号还是分号还是逗号???
在 Flutter 中构建应用时,SharedPrefernces 和 Flutter_secure_storage 包有啥区别?还是他们做同样的事情?