3

假设我们ABCPageState在 ABC 有状态小部件中创建了一个简单的 DropdownButton。

class ABCPageState extends State<ABCPage> {

  @override 
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Container(
        child:
          new DropdownButton(
                hint: new Text("Please select value"),
                items: <String>['Value 1', 'Value2'].map((String value) {
                  return new DropdownMenuItem<String>(
                    value: value,
                    child: new Text(value),
                  );
                }).toList(),
                onChanged: (_) {},
          )
      )
    );
  }
}

但是在我们单击其中一个选项后未选择任何值。换句话说 - DropdownButton 是空的,即使我们点击了一个项目。我们怎样才能解决这个问题?

4

1 回答 1

3

只需创建dropdownSelectedItem将存储所选项目的变量。DropdownButton具有value设置所选值的属性。在onChanged回调中 - 将值设置为dropdownSelectedItem变量。记得在之后调用setState方法来重绘 UI。

class ABCPageState extends State<ABCPage> {

  var dropdownSelectedItem;

  @override 
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Container(
        child:
          new DropdownButton(
                hint: new Text("Please select value"),
                items: <String>['Value 1', 'Value2'].map((String value) {
                  return new DropdownMenuItem<String>(
                    value: value,
                    child: new Text(value),
                  );
                }).toList(),
                value: dropdownSelectedItem,
                onChanged: (val) { dropdownSelectedItem = val; setState((){}); },
            ),
      ), 
    );
  }
}
于 2018-08-28T22:02:44.573 回答