Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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