Switch
Toggle boolean state with smooth animation.
Installation
bash
flutter_studio add switchbash
flutter pub add flutter_studioUsage
dart
CustomSwitch(
value: isEnabled,
onChanged: (value) {
setState(() {
isEnabled = value;
});
},
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
value | bool | required | Current switch state |
onChanged | ValueChanged? | null | Callback when state changes |
