Repositories (1)

picbox
1 snippets stored for this repo
Dart IconDart
/// Создаёт переключатель.
  Widget _buildSwitch() {
    return UListSwitch(
      "I love hentai",
      value: _checkedRules,
      onChanged: (value) => setState(() => _checkedRules = value),
    );