从其外部的State类更改Flutter窗口小部件的状态

时间:2018-03-26 06:40:44

标签: dart flutter

我创建了一个DropdownButton作为StatefulWidget。该类称为MyDropDown,具有相应的状态MyDropDownState。

我在MyDropDownState类中创建了一个reset函数:

void reset(){
    setState((){
        _selection = null;
    });
}

将选择设置为null并设置下拉列表的状态,有效地重置下拉列表。

问题的核心是当按下AppBar上的IconButton时我必须调用此函数。我尝试了多种方法,无法访问我创建的MyDropDown类的状态。

这是MyDropDown的代码,它是State,简化:

class MyDropDown extends StatefulWidget {

  final Map<String, String> _itemMap;

  MyDropDown(this._itemMap);

  @override
  MyDropDownState createState() => new MyDropDownState();
}

class MyDropDownState extends State<MyDropDown> {

  String _selection;

  void reset(){
    setState((){
      _selection = null;
    });
  }

  @override
  void initState() {
    _selection = null;
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
      return new DropdownButton(
          value: _selection,
          //getDropItems builds dropdown items
          items: getDropItems(widget._itemMap),
          onChanged: (s) {
            setState(() {
              _selection = s;
            });
          },
      );
  }

}

在我的主页面中,我创建了一个新的MyDropDown

final MyDropDown cityDropdown = new MyDropDown(cityLookup);

然后这是AppBar(在Scaffold中),它包含我要按下的IconButton以重置Dropdown。

appBar : new AppBar(
    title: new Text('Filter Jobs'),
    actions: <Widget>[
      new IconButton(
          icon: new Icon(Icons.refresh),
          onPressed: () {
            print('Reset dropdowns');
            //this is where I would call reset() on cityDropdown's state, if I could figure out how to get to it :/
          },
      ),
    ],
  ),

1 个答案:

答案 0 :(得分:8)

这里最简单的解决方案是使用GlobalKey<T>PATH system variable

  1. 在页面窗口小部件中创建GlobalKey<MyDropDownState>并将其传递给MyDropDown。
  2. 在回调中使用该键:key.currentState.reset();
  3. 或者,您可以使用Flutter自己使用的控制器模式。例如,TextFieldTextEditingControllerhttps://docs.flutter.io/flutter/widgets/GlobalKey-class.html