Flutter/UI/Cupertino/CupertinoSwitch
提供: 初心者エンジニアの簡易メモ
iosスタイルスイッチ
Cupertinoスイッチ
ListTile( title: Text('スイッチ1', style: TextStyle( locale: Locale("ja", "JP"), fontSize: 15.0, ), ), trailing: CupertinoSwitch( value: _switchValue1, onChanged: (bool value) { setState(() { _switchValue1 = value; }); }, ), onTap: () { setState(() { _switchValue1 = !_switchValue1; }); }, ),