「Flutter/UI/Cupertino/CupertinoSwitch」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「 ==iosスタイルスイッチ== Cupertinoスイッチ <pre> ListTile( title: Text('スイッチ1', style: TextStyle( locale: Locale(...」) |
(相違点なし)
|
2019年12月11日 (水) 17:55時点における最新版
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; }); }, ),