Use Column
xxxxxxxxxx
ElevatedButton(
onPressed: null,
child: Column(
children: [
Icon(Icons.favorite),
Text("Likes")
]
)
)
xxxxxxxxxx
TextButton.icon(
icon: Icon(Icons.camera),
label: Text('Take A Photo'),
onPressed: () {},
)
xxxxxxxxxx
ElevatedButton.icon(
icon: Icon(Icons.home),
label: Text('ElevatedButton'),
onPressed: () {},
),