Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rahiche/stepper_touch
flutter stepper_touch widget
https://github.com/rahiche/stepper_touch
Last synced: 6 days ago
JSON representation
flutter stepper_touch widget
- Host: GitHub
- URL: https://github.com/rahiche/stepper_touch
- Owner: Rahiche
- License: other
- Created: 2018-09-28T09:35:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-23T20:31:23.000Z (3 months ago)
- Last Synced: 2024-12-22T17:08:34.942Z (13 days ago)
- Language: Dart
- Homepage:
- Size: 1020 KB
- Stars: 323
- Watchers: 4
- Forks: 28
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
The concept of the widget inspired
from [Nikolay Kuchkarov](https://dribbble.com/shots/3368130-Stepper-Touch).
i extended the functionality to be more useful in real world applications# Thank _You_!
Please :star: this repo and share it with others# Demo
![stepper](https://github.com/user-attachments/assets/0bdf3bb4-66f3-4739-9f06-d30ea55dd984)### Created
* [Raouf Rahiche](https://github.com/Rahiche)
* ([@raoufrahiche](https://twitter.com/raoufrahiche))
* ([Youtube](https://www.youtube.com/channel/UCal0wCIwkxiKcrYPvBS6RiA))## Usage example
```dart
import 'package:stepper_touch/stepper_touch.dart';
...
Container(
padding: const EdgeInsets.all(8.0),
child: StepperTouch(
initialValue: 0,
direction: Axis.vertical,
withSpring: false,
onChanged: (int value) => print('new value $value'),
),
),
...
```## Getting Started
For help getting started with Flutter, view our online
[documentation](https://flutter.io/).