I'm creating the button over the image and i want the button at the bottom center of the image
Widget buildBody() {
return Stack(
children: <Widget> [
Image(
image: new AssetImage('assets/homebg.png'),
),
Center(
child: RaisedButton(
onPressed: () => launch("tel://21213123123"),
child: new Text("Call me")
)
),
]
);
}
I expect the output of button should be at the bottom of the image