Commit e77da43f authored by Collin Jackson's avatar Collin Jackson

Fix stocks app usage of checkbox

TBR=hixie

Review URL: https://codereview.chromium.org/1188573004.
parent 9324b1b1
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'package:sky/widgets/checkbox.dart'; import 'package:sky/widgets/checkbox.dart';
import 'package:sky/widgets/toggleable.dart';
import 'package:sky/widgets/popup_menu.dart'; import 'package:sky/widgets/popup_menu.dart';
import 'package:sky/widgets/basic.dart'; import 'package:sky/widgets/basic.dart';
import 'package:sky/framework/theme/view_configuration.dart'; import 'package:sky/framework/theme/view_configuration.dart';
...@@ -22,7 +23,7 @@ class StockMenu extends Component { ...@@ -22,7 +23,7 @@ class StockMenu extends Component {
UINode build() { UINode build() {
var checkbox = new Checkbox( var checkbox = new Checkbox(
checked: this.autorefresh, value: this.autorefresh,
onChanged: this.onAutorefreshChanged onChanged: this.onAutorefreshChanged
); );
......
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