我正在尝试在我的应用中管理width
中的dropdown button
SizedBox(
width: 200,
child: DropdownButton(
//isExpanded: true,
isDense: false,
// button's height
value: dropdownVType,
hint: Text('Choose',
style: TextStyle(fontSize: 30.0),
),
onChanged: (String newValue) {
setState(() {
dropdownVType = newValue;
});
},
items: <String>['PA', 'CH', 'KA']
.map<DropdownMenuItem<String>>((String value) {
return DropdownMenuItem<String>(
value: value,
child: new Text(value)
);
}).toList(),
),
),