Answers for "on pressed change primary color elevated button flutter"

2

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 "on pressed change primary color elevated button flutter"

Browse Popular Code Answers by Language