Commit fb58141d authored by Adam Barth's avatar Adam Barth

Port hello_world to fn3

parent bb8e82d0
...@@ -2,14 +2,6 @@ ...@@ -2,14 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'package:sky/widgets.dart'; import 'package:sky/src/fn3.dart';
class HelloWorldApp extends App { void main() => runApp(new Center(child: new Text('Hello, world!')));
Widget build() {
return new Center(child: new Text('Hello, world!'));
}
}
void main() {
runApp(new HelloWorldApp());
}
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