Last active
January 31, 2020 16:02
-
-
Save jediyeti/cc6f9b48d07cd12063f31cb814e5fc5e to your computer and use it in GitHub Desktop.
Stack Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MaterialApp(home: MyApp())); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: Text('Stack')), | |
body: Stack( | |
children: <Widget>[ | |
Positioned( | |
top: 8, | |
left: 8, | |
child: Icon(Icons.star, size: 50), | |
), | |
Positioned( | |
bottom: 8, | |
right: 8, | |
child: Icon(Icons.call, size: 50), | |
), | |
], | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment