Skip to content

Instantly share code, notes, and snippets.

@jediyeti
Last active January 31, 2020 16:02
Show Gist options
  • Save jediyeti/cc6f9b48d07cd12063f31cb814e5fc5e to your computer and use it in GitHub Desktop.
Save jediyeti/cc6f9b48d07cd12063f31cb814e5fc5e to your computer and use it in GitHub Desktop.
Stack Example
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