最佳答案
我正在纠结于如何将一个小部件集中在 listView
中。
我试过了,但是 Text('ABC')
不是垂直居中的。
我怎么才能做到呢?
new Scaffold(
appBar: new AppBar(),
body: new ListView(
padding: const EdgeInsets.all(20.0),
children: [
new Center(
child: new Text('ABC')
)
]
)
);