Raised Button Color Flutter Code Example


Example 1: flutter raisedbutton example

RaisedButton(child: Text("Rock & Roll"),                 onPressed: _changeText,                 color: Colors.red,                 textColor: Colors.yellow,                 padding: EdgeInsets.fromLTRB(10, 10, 10, 10),                 splashColor: Colors.grey,               )

Example 2: flutter elevated button

ElevatedButton(       onPressed: () {},       child: Text('Submit'),     );

Example 3: 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; }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?