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, )
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, )
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; }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us