├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example └── example.dart ├── lib └── lite_rolling_switch.dart ├── pubspec.lock ├── pubspec.yaml └── test └── lite_rolling_switch_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/README.md -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/lite_rolling_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/lib/lite_rolling_switch.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/lite_rolling_switch_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgustav/lite_rolling_switch/HEAD/test/lite_rolling_switch_test.dart --------------------------------------------------------------------------------