Answers for "CHANGE BACKGROUND TO BUTTON WHN MAKE ACTION ANOTHER BUTTON FLUTT"

1

raised button background color doesn't changeflutter

RaisedButton(
              onPressed: null,
              child: Text('Get in'), // change it to sign-in
              color: Colors.blue,
              disabledColor: Colors.blue,//add this to your code
            )
Posted by: Guest on October-19-2020
2

raisedbutton background color

List<bool> _list = [true, false, true, false];

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(title: Text("Title")),
    body: ListView(children: _buildButtons()),
  );
}

List<Widget> _buildButtons() {
  List<Widget> listButtons = List.generate(_list.length, (i) {
    return RaisedButton(
      color: _list[i] ? Colors.green : Colors.red,
      onPressed: () {
        setState(() {
          _list[i] = !_list[i];
        });
      },
      child: Text("Button #${i}"),
    );
  });
  return listButtons;
}
Posted by: Guest on June-25-2020

Code answers related to "CHANGE BACKGROUND TO BUTTON WHN MAKE ACTION ANOTHER BUTTON FLUTT"

Browse Popular Code Answers by Language