├── .github └── workflows │ └── dart.yml ├── .gitignore ├── README.md ├── flutter-counter.iml ├── gif └── App.gif ├── lib ├── example │ └── example.dart ├── src │ └── stepper.dart └── stepper_touch.dart ├── pubspec.lock └── pubspec.yaml /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/README.md -------------------------------------------------------------------------------- /flutter-counter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/flutter-counter.iml -------------------------------------------------------------------------------- /gif/App.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/gif/App.gif -------------------------------------------------------------------------------- /lib/example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/lib/example/example.dart -------------------------------------------------------------------------------- /lib/src/stepper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/lib/src/stepper.dart -------------------------------------------------------------------------------- /lib/stepper_touch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/lib/stepper_touch.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajChowdhury240/Flutter-Counter-App/HEAD/pubspec.yaml --------------------------------------------------------------------------------