Buttons
Buttons are components that can be clicked
Contained button
ElevatedButton(
onPressed: () {
// Respond to button press
},
child: Text('CONTAINED BUTTON'),
)ElevatedButton.icon(
onPressed: () {
// Respond to button press
},
icon: Icon(Icons.add, size: 18),
label: Text("CONTAINED BUTTON"),
)Text button
RawMaterialButton
Last updated