sizebox小部件的width属性在listview小部件内使用时不起作用,但在列小部件内使用时起作用

时间:2019-07-29 06:00:55

标签: flutter

我正在尝试在我的应用中管理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(),
                ),
              ),

0 个答案:

没有答案