Answers for "change color of button on pressed flutter"

1

how to change the color of elevatedbutton in flutter

ElevatedButton(
  child: Text("Click Me!"),
  onPressed: () {},
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.all(Colors.red),
  ),
)
Posted by: Guest on October-09-2021

Code answers related to "change color of button on pressed flutter"

Browse Popular Code Answers by Language