├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo1.gif ├── demo2.gif ├── lib └── progress_button.dart ├── progress_button.iml ├── pubspec.lock ├── pubspec.yaml └── test └── progress_button_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/README.md -------------------------------------------------------------------------------- /demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/demo1.gif -------------------------------------------------------------------------------- /demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/demo2.gif -------------------------------------------------------------------------------- /lib/progress_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/lib/progress_button.dart -------------------------------------------------------------------------------- /progress_button.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/progress_button.iml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/progress_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilozercan/ProgressButton/HEAD/test/progress_button_test.dart --------------------------------------------------------------------------------