最佳答案
我有一个位置的列表,我想实现作为一个下拉列表在扑动。我对这门语言很陌生。这就是我所做的。
new DropdownButton(
value: _selectedLocation,
onChanged: (String newValue) {
setState(() {
_selectedLocation = newValue;
});
},
items: _locations.map((String location) {
return new DropdownMenuItem<String>(
child: new Text(location),
);
}).toList(),
这是我的清单:
List<String> _locations = ['A', 'B', 'C', 'D'];
我得到了下面的错误。
Another exception was thrown: 'package:flutter/src/material/dropdown.dart': Failed assertion: line 468 pos 15: 'value == null || items.where((DropdownMenuItem<T> item) => item.value == value).length == 1': is not true.
我假设 _selectedLocation
的值为 null,但是我是这样初始化它的。
String _selectedLocation = 'Please choose a location';