How can I display buttons side-by-side in Flutter?
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
OutlinedButton(
onPressed: (){},
child: Text('OutlinedButton'),
),
ElevatedButton(
child: Text('ElevatedButton'),
onPressed: () {},
),
TextButton(
onPressed: (){},
child: const Text('TextButton')
),
],
),