flutter button with icon
ElevatedButton.icon(
onPressed: () {},
icon: Icon(Icons.email),
label: Text("Contact me"),
style: ElevatedButton.styleFrom(
textStyle: TextStyle(fontSize: 15),
),
),