We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d5adf9 commit d4725c8Copy full SHA for d4725c8
lib/main.dart
@@ -14,9 +14,22 @@ class Home extends StatelessWidget {
14
title: Text('My second application'),
15
centerTitle: true,
16
),
17
- body: Padding(
18
- child: Text('All over the world'),
19
- padding: EdgeInsets.all(29.0),
+ body: Column(
+ children: [
+ Text('Row your boat'),
20
+ FlatButton(
21
+ onPressed: () {},
22
+ child: Text('Click it!'),
23
+ color: Colors.orange,
24
+ ),
25
+ Container(
26
+ color: Colors.cyan,
27
+ padding: EdgeInsets.all(30.0),
28
+ child: Text('Encapsulated'),
29
+ )
30
+ ],
31
+ mainAxisAlignment: MainAxisAlignment.center,
32
+ crossAxisAlignment: CrossAxisAlignment.stretch,
33
34
floatingActionButton: FloatingActionButton(
35
child: Text('Click'),
0 commit comments