ElevatedButton.icon(
onPressed: () {},
icon: Icon(Icons.email),
label: Text("Contact me"),
style: ElevatedButton.styleFrom(
textStyle: TextStyle(fontSize: 15),
),
),
IconButton(
icon: Icon(
Icons.directions_transit,
),
onPressed: () {},
),
ElevatedButton.icon(
icon: Icon(Icons.home),
label: Text('ElevatedButton'),
onPressed: () {},
),