diff --git a/sky/sdk/example/hello_world/lib/main.dart b/sky/sdk/example/hello_world/lib/main.dart index 699c117c93992..4c451194443ef 100644 --- a/sky/sdk/example/hello_world/lib/main.dart +++ b/sky/sdk/example/hello_world/lib/main.dart @@ -6,7 +6,7 @@ import 'package:sky/widgets/basic.dart'; class HelloWorldApp extends App { Widget build() { - return new Text('Hello, world!'); + return new Center(child: new Text('Hello, world!')); } }