Documentation
Switch

Switch

A switch that allows the user to toggle between checked and unchecked.

Usage

FSwitch(...)

FSwitch(
  label: const Text('Airplane Mode'),
  description: const Text('Turn on airplane mode to disable all wireless connections.'),
  error: const Text('Please turn on airplane mode.'),
  semanticLabel: 'Airplane Mode',
  value: true,
  onChanged: (value) {},
  enabled: true,
  autofocus: true,
);

Examples

Disabled

Form