Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# stepper_touch

Awesome Flutter

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/).