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 }) {
labels: tabs.map((String tab) => new TabLabel(text: tab)).toList(),
selectedIndex: selectedIndex,
isScrollable: isScrollable,
onChanged: (tabIndex) {
onChanged: (int 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