Skip to content

Instantly share code, notes, and snippets.

@lucalves
Created September 26, 2019 00:55
Show Gist options
  • Save lucalves/ac31c75b00e40572d65979eb4870a61a to your computer and use it in GitHub Desktop.
Save lucalves/ac31c75b00e40572d65979eb4870a61a to your computer and use it in GitHub Desktop.
Widget incluiStack() {
return Stack(
alignment: Alignment.center,
children: <Widget>[
Image.network(
'https://i.imgur.com/fzgwYzq.png',
width: double.infinity,
height: double.infinity,
fit: BoxFit.cover,
),
Positioned(
bottom: 30.0,
child: RaisedButton(
shape: RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(5.0),
),
child: Text('Clique para prosseguir'),
onPressed: () {},
),
)
],
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment