What is the difference between child: and children: property in Flutter?
I started studying flutter for 2 weeks from Flutter official documentation and I don't find it as easy as studying Android.
child takes a single widget
child
child: Text('foo')
children takes a list of widgets
children
children: <Widget>[Text('foo'), Text('bar')]