From b35fb49b1f2deaf2d555952bcbbcf294288ed81c Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Thu, 16 Jul 2015 14:11:12 -0700 Subject: [PATCH] =?UTF-8?q?center=20the=20hello=20world=20text=20so=20it?= =?UTF-8?q?=20isn=E2=80=99t=20covered=20up=20by=20the=20status=20bar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sky/sdk/example/hello_world/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!')); } }