I'm struggling with centering a widget inside listView.
I tried this, but Text('ABC') is not centered vertically.
How can I achieve this?
new Scaffold(
appBar: new AppBar(),
body: new ListView(
padding: const EdgeInsets.all(20.0),
children: [
new Center(
child: new Text('ABC')
)
]
)
);

