标签:checked als code cup col tst span class nbsp
bool _switchChecked = true; CupertinoSwitch( value: true, //开关值 ), CupertinoSwitch( value: false, ), CupertinoSwitch( value: _switchChecked, onChanged: (flag) { setState(() { // 状态改变是通过setState改变状态值 _switchChecked = flag; }); }, )
标签:checked als code cup col tst span class nbsp
原文地址:https://www.cnblogs.com/timba1322/p/12486919.html