Adds default text style
diff --git a/examples/game/lib/main.dart b/examples/game/lib/main.dart
index 2cb407a..51366d9 100644
--- a/examples/game/lib/main.dart
+++ b/examples/game/lib/main.dart
@@ -119,8 +119,10 @@
             width: 128.0,
             height: 128.0
           ),
-          new Text(
-            "Last Score: $_lastScore",
+          new DefaultTextStyle(
+            child: new Text(
+              "Last Score: $_lastScore"
+            ),
             style: new TextStyle(fontSize:20.0)
           )
         ],