• Stars
    star
    303
  • Rank 137,693 (Top 3 %)
  • Language
    Dart
  • License
    Other
  • Created about 6 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

flutter stepper_touch widget

stepper_touch

Awesome Flutter

the concept of the widget inspired from Nikolay Kuchkarov. i extended the functionality to be more useful in real world applications

Thank You!

Please โญ this repo and share it with others

gif

Created

Usage example

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.