facebook twitter hatena line email

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

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