facebook twitter hatena line email

「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;
            });
          },
        ),

参考:https://qiita.com/matsukatsu/items/e289e30231fffb1e4502