You are on page 1of 1

body: Column or Row with coustome the size(

children: <Widget>[
SizedBox(
width:100.0,
height: 50.0,
child:RaisedButton(
child: Text("Approve"), onPressed: ()=> null,
), ),
SizedBox(
width:100.0,
height: 50.0,
child:RaisedButton(
child: Text("Rejection"), onPressed: ()=> null,
), ),

child: FractionallySizedBox(
widthFactor: 0.6,
child: RaisedButton(
color: Color(0xFF00A0BF),
textColor: Color(0xFFFFFFFF),
child: Text('LOGIN',style: TextStyle(letterSpacing: 4.0),),
shape: RoundedRectangleBorder(side: BorderSide.none),
onPressed: ()=> null,),
),

],
),

body: Row or Column fixed(


children: <Widget>[
Expanded(
child:RaisedButton(
child: Text("Approve"), onPressed: ()=> null,
), ),
Expanded(
child:RaisedButton(
child: Text("Rejection"), onPressed: ()=> null,
), ),

Expanded(
child:RaisedButton(
child: Text("Need revise"), onPressed: ()=> null,
), ),

],
),

You might also like