From dbb1e8ada7e03725206581234ae97799b9630020 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Wed, 28 Oct 2015 21:24:44 -0700 Subject: [PATCH] Update tutorial.md icon size changed from an int to an enum --- .travis.yml | 2 ++ tutorial.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9e27d1fe3e..bf673de755 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ language: dart +dart: + - dev sudo: false script: ./tool/travis.sh diff --git a/tutorial.md b/tutorial.md index d788dc7a3c..c93a15af7a 100644 --- a/tutorial.md +++ b/tutorial.md @@ -160,7 +160,7 @@ class TutorialHome extends StatelessComponent { child: new Text('Hello, world!') ), floatingActionButton: new FloatingActionButton( - child: new Icon(type: 'content/add', size: 24) + child: new Icon(type: 'content/add') ) ); }