Skip to content

Commit 5c5f252

Browse files
committed
blank MaterialApp
1 parent bc3b54c commit 5c5f252

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lib/main.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ class MyApp extends StatelessWidget {
1414
primarySwatch: Colors.green,
1515
visualDensity: VisualDensity.adaptivePlatformDensity,
1616
),
17-
home: Center(child: Text('barebones')),
17+
home: Scaffold(
18+
appBar: AppBar(
19+
title: Text('Home Screen'),
20+
),
21+
body: Center(
22+
child: Text('Home Screen'),
23+
),
24+
),
1825
);
1926
}
2027
}

0 commit comments

Comments
 (0)