我正在ListTile中使用Checkbox,如下所示:
ListTile(
leading: Checkbox(
value: _isChecked,
onChanged: (v) {
setState(() {
_isChecked = !_isChecked;
});
},
),
title: Text("is Bathroom"),
);
如何禁用该复选框。我知道Checkbox小部件是无状态的。但是材料子包中是否提供了其他任何可以执行此操作的Widget。类似于InputDecorator。
我对DropdownButton也有同样的问题。我使用它的方式如下,以便从下拉列表中选择表单中的一项。
InputDecorator(
decoration: InputDecoration(
labelText: "Type",
hintText: "Choose the type",
),
isEmpty: _type == null,
child: DropdownButton<int>(
value: _type,
isDense: true,
onChanged: (value) {
setState(() {
_type = value;
});
},
items: _buildDropdownItemList(),
),
);
我在InputDecoration中尝试了enable参数,但这只是改变了装饰。用户仍然可以更改选择。