Component
Switch
Flutter implementation of the Switch component.
Usage
dart
import 'package:refraction_ui/refraction_ui.dart';
class MySwitchExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Switch(
// Add props here
);
}
}