We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d00cf commit dd1932fCopy full SHA for dd1932f
1 file changed
myapp/lib/main.dart
@@ -1,7 +1,18 @@
1
import 'package:flutter/material.dart';
2
3
void main() => runApp(MaterialApp(
4
- home: Text('hey ninjas!!')
+ home: Scaffold(
5
+ appBar: AppBar(
6
+ title: Text('my first app'),
7
+ centerTitle: true,
8
+ ),
9
+ body: Center(
10
+ child: Text('hello, ninjas!'),
11
12
+ floatingActionButton: FloatingActionButton(
13
+ child: Text('click'),
14
15
16
));
17
18
0 commit comments