adding startup, screen size in banner
diff --git a/lib/dashboard_app.dart b/lib/dashboard_app.dart
index 71ba664..e55e600 100644
--- a/lib/dashboard_app.dart
+++ b/lib/dashboard_app.dart
@@ -252,7 +252,7 @@
 
     return new Scaffold(
       appBar: new AppBar(
-        title: new Text('Fuchsia Build Status'),
+        title: new Text('Fuchsia Build Status ${ui.window.physicalSize.width}x${ui.window.physicalSize.height}'),
       ),
       body: new Container( 
         padding: new EdgeInsets.all(20.0),
diff --git a/pubspec.yaml b/pubspec.yaml
index 1bb17ff..192949f 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -2,7 +2,7 @@
 description: Display the Fuchsia build status
 
 dependencies:
-  html: ^0.13.1
+  html: any
   flutter:
     sdk: flutter
 
diff --git a/startup.config b/startup.config
new file mode 100644
index 0000000..9229344
--- /dev/null
+++ b/startup.config
@@ -0,0 +1,9 @@
+{
+  "initial-apps": [
+    [
+      "file:///system/apps/bootstrap",
+      "file:///system/apps/launch",
+      "file:///system/apps/dashboard"
+    ]
+  ]
+}