1// JZ
2Container(
3 height: 25.0,
4 padding: EdgeInsets.only(left: 10.0),
5 child: RaisedButton.icon(
6 color: Colors.white,
7 label: Text(
8 'Te amo, pero no eres para mi',
9 style: TextStyle(fontSize: 13.0),
10 ),
11 icon: Icon(
12 Icons.ac_unit_outlined,
13 size: 13.0,
14 ),
15 onPressed: () {},
16 ),
17 )
1FlatButton.icon(onPressed: null, icon: null, label: null);
2RaisedButton.icon(onPressed: null, icon: null, label: null);