return Container(
alignment:
Alignment.center,
padding: EdgeInsets.symmetric(horizontal:10.0, vertical: 10.0),
child: FlatButton(
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context) => BundleCreate()));
},
color:
Colors.red[200],
shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20.0)),
child: Text("Press", style: TextStyle(color: Colors.white)),
),
);