I have a small currency table. I didn\'t use grid. I used Column and rows. Problem is that items in rows is not showing in center as shown below in the Excel example. What widge
You can use Spacer if you want fine grain control.
Spacer
Column( children: [ Spacer(), // 1st spacer Widget1(), Widget2(), Spacer(), // 2nd spacer ], )
You can change flex too using Spacer(flex:2)
flex
Spacer(flex:2)