Commit 4f96083e authored by Hixie's avatar Hixie

Fix warning in test. Arguments must be typed.

parent ed195cfa
...@@ -11,7 +11,7 @@ Widget buildFrame({ List<String> tabs, bool isScrollable: false }) { ...@@ -11,7 +11,7 @@ Widget buildFrame({ List<String> tabs, bool isScrollable: false }) {
labels: tabs.map((String tab) => new TabLabel(text: tab)).toList(), labels: tabs.map((String tab) => new TabLabel(text: tab)).toList(),
selectedIndex: selectedIndex, selectedIndex: selectedIndex,
isScrollable: isScrollable, isScrollable: isScrollable,
onChanged: (tabIndex) { onChanged: (int tabIndex) {
selectedIndex = tabIndex; selectedIndex = tabIndex;
} }
); );
......
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