Last active
August 6, 2018 03:34
-
-
Save burhanrashid52/3673b8932bfdafd5905987080e4495a2 to your computer and use it in GitHub Desktop.
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(new MyApp()); | |
class MyApp extends StatefulWidget { | |
@override | |
_MyAppState createState() => new _MyAppState(); | |
} | |
class _MyAppState extends State<MyApp> { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
home: new Scaffold( | |
appBar: new AppBar( | |
title: new Text("FrameLayout"), | |
), | |
body: new Container( | |
constraints: new BoxConstraints.expand(), | |
color: Colors.tealAccent, | |
child: new Stack( | |
children: [ | |
Container( | |
height: 200.0, | |
width: 200.0, | |
color: Colors.red, | |
), | |
Container( | |
height: 150.0, | |
width: 150.0, | |
color: Colors.blue, | |
), | |
Container( | |
height: 100.0, | |
width: 100.0, | |
color: Colors.green, | |
), | |
Container( | |
height: 50.0, | |
width: 50.0, | |
color: Colors.yellow, | |
), | |
], | |
), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment