Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khadkarajesh/nepninja
Library for animated widgets of flutter
https://github.com/khadkarajesh/nepninja
android animation animation-library flutter ios learning learning-exercise login signup
Last synced: 6 days ago
JSON representation
Library for animated widgets of flutter
- Host: GitHub
- URL: https://github.com/khadkarajesh/nepninja
- Owner: khadkarajesh
- License: bsd-3-clause
- Created: 2020-04-26T09:24:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-27T02:33:12.000Z (over 4 years ago)
- Last Synced: 2024-10-12T16:49:59.922Z (about 1 month ago)
- Topics: android, animation, animation-library, flutter, ios, learning, learning-exercise, login, signup
- Language: Dart
- Homepage: https://pub.dev/packages/nepninja
- Size: 312 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# nepninja
Reuse the beautiful animated widgets with less effort## Sample
![](https://github.com/khadkarajesh/nepninja/blob/master/assets/images/circular_animated_button.gif)## Usage
```dart
CircularProgressButton(
height: 55,
width: 200,
borderRadius: 30,
backgroundColor: Colors.lightBlueAccent,
fadeDurationInMilliSecond: 400,
text: "Sign In",
fontSize: 30,
progressIndicatorColor: Colors.pinkAccent,
onTap: (reset) {
makeRequest(reset);
},
)# reset state once validation error or network fails
void makeRequest(Function reset) {
Future.delayed(Duration(seconds: 3), () {
reset();
});
}```
## Article
You can read further more detail about implementation over this [article](https://medium.com/@rajesh_khadka/flutter-animation-challenge-1-5ce9bed65161).