zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

Flutter 组件之 CheckboxListTile

2023-09-11 14:20:21 时间
CheckboxListTile(
                activeColor: Colors.red,
                checkColor: Colors.yellow,
                value: _newValue2,
                onChanged: (newValue) {
                  setState(() {
                    _newValue2 = newValue;
                    timeDilation = 13;
                  });
                },
                title: Text('title'),
                subtitle: Text('subtitle'),
                isThreeLine: false,
                dense: true,
                secondary: Icon(Icons.hourglass_empty),
                selected: true,
                controlAffinity: ListTileControlAffinity.leading, //决定选择框的位置
              ),