sliding_toggle_switch

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sliding toggle switch

Toggle Switch #
A minimal sliding toggle switch widget. It can be customized with desired width, height and colors.
Getting Started #
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
...
sliding_toggle_switch: ^1.0.0
copied to clipboard
Import it:
import 'package:sliding_toggle_switch/sliding_toggle_switch.dart';
copied to clipboard
Usage Examples #
Basic toggle switch #
// The minimum amount of code to use the switch:
SlidingToggleSwitch(
onChange: (value) {
print(value);
},
),
copied to clipboard
The default configurations look like this:

Example with all available customizable properties #
SlidingToggleSwitch(
width: 100,
height: 30,
disabled: true,
initialValue: true,
thumbDisabledColor: Colors.grey,
thumbOnColor: Colors.green.shade600,
trackDisabledColor: Colors.grey.shade600,
trackOffColor: Colors.transparent,
trackOnColor: Colors.transparent,
thumbOffColor: Colors.grey.shade300,
borderColor: Colors.black38,
borderWidth: 3,
onChange: (value) {
print(value);
},
),
copied to clipboard
Various options can look like this:

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.