N

“””
ButtonTheme(
minWidth: 150.0,
height: 50,
child: RaisedButton(
color: Colors.white,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Icon(Icons.account_balance_wallet, color: Color(0xFF00AB50),size: 20.0,),
Text('Бонусы за покупки',
textAlign: TextAlign.justify,
overflow: TextOverflow.ellipsis,
maxLines: 2),
],),
elevation: 4.0,
onPressed: (){},),
),
“””