How to centred column and row item in Flutter?
问题 I have small currency table. I didn't use grid. I use Column and rows. Problem is that items in rows is not showing in centre as shown below excel example. What widget do I have to use to makes the items centred? Any help please? The Example codes: return new Center( child: new Column( crossAxisAlignment: CrossAxisAlignment.center, children: <Widget>[ new Row( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ new Padding( padding: const EdgeInsets.fromLTRB(15.0, 5.0, 15.0, 5.0)