Commit 3501bb63 authored by Collin Jackson's avatar Collin Jackson

center the hello world text so it isn’t covered up by the status bar

parent c491ad7c
...@@ -6,7 +6,7 @@ import 'package:sky/widgets/basic.dart'; ...@@ -6,7 +6,7 @@ import 'package:sky/widgets/basic.dart';
class HelloWorldApp extends App { class HelloWorldApp extends App {
Widget build() { Widget build() {
return new Text('Hello, world!'); return new Center(child: new Text('Hello, world!'));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment