Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/Ezaldeen99/Shaky_animated_list

List animations to track your scroll changes on screen or your list first attachment to animated your list items with different transition rules.
https://github.com/Ezaldeen99/Shaky_animated_list

animations flutter flutterapps grid-layout listview scroll

Last synced: 7 days ago
JSON representation

List animations to track your scroll changes on screen or your list first attachment to animated your list items with different transition rules.

Awesome Lists containing this project

README

        

# [Shaky_animated_list](https://pub.dev/packages/shaky_animated_listview)

[![pub](https://img.shields.io/pub/v/shaky_animated_listview.svg)](https://pub.dev/packages/shaky_animated_listview/install)

[Shaky_animated_list](https://pub.dev/packages/shaky_animated_listview/install) can be used for **three** main things:

1. Animate List view scroll.
2. Animate grid view first view.
3. Animate grid view scroll.

## 1. Library over view

All these animations track your scroll changes on screen or your list first attachment to animated your list items with different transition rules.

[Shaking Grid][shaking_grid] | [Scroll list][scroll_list] | [Scroll Grid][scroll_grid]
--- | --- | ---
![shaking_grid] | ![scroll_list] | ![scroll_grid]

You can define these animation directions **Axis** by channing your list **ScrollDirection**.

### Shaking Grid

Shaking grid can be simply implemented by wrapping your grid child by `GridAnimatorWidget` and that's it we will take it from here ^^

for example you can simply do this to show shaking grey color cards
```dart
GridView.count(
crossAxisCount: 3,
// shrinkWrap: true,
children: List.generate(9, (i) => GridAnimatorWidget(
child: Padding(
padding: const EdgeInsets.all(4),
child: ClipRRect(
borderRadius: const BorderRadius.all(Radius.circular(10)),
child: Container(
color: Colors.grey,
),
),
),
),).toList()
)
```
![shaking_grid]

### ListView Scroll animations

ListView Scroll animations will enable your to implement the scroll animations with full control on animations space and duration please don't add vertical margins to your elements, you can use the `spaceBetween` to give a space between elements and `extendedSpaceBetween` to control the scroll animations space.
Also you can use `duration` to control the reverse animations duration based on your needs

for example you can simply do this to show ListView vertical Scroll animations
```dart
AnimatedListView(
duration: 100,
extendedSpaceBetween: 30,
spaceBetween:10,
children: List.generate(
21,
(index) => Card(
elevation: 50,
margin: const EdgeInsets.symmetric(horizontal: 20),
shadowColor: Colors.black,
color: Colors.grey,
child: SizedBox(
height: 300,
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
children: [
CircleAvatar(
backgroundColor: Colors.blue[500],
radius: 60,
child: const CircleAvatar(
backgroundImage: NetworkImage(
"https://avatars.githubusercontent.com/u/30810111?v=4"),
//NetworkImage
radius: 50,
),
),
const SizedBox(
height: 10,
),
Text(
'Scroll to start',
style: TextStyle(
fontSize: 30,
color: Colors.blue[900],
fontWeight: FontWeight.w500,
),
),
const SizedBox(
height: 10,
),
const Text(
'Animated list demo',
style: TextStyle(
fontSize: 15,
color: Colors.white,
),
),
const SizedBox(
height: 10,
),
],
),
),
),
)
))
```
![scroll_list]

### Grid Scroll animations
Grid Scroll animations will enable your to implement the scroll animations on a grid view, one little change here is that we will implement the `delegate`, this is a design issue that we run into so you will have to
to specify your `crossAxisCount`, `crossAxisSpacing`, `mainAxisSpacing`, and `duration` and we will take it from here,you can use any other default supported parameters in GridView.

for example you can simply do this to show Grid vertical Scroll animations
```dart
AnimatedGridView(
duration: 100,
crossAxisCount: 2,
mainAxisExtent: 256,
crossAxisSpacing: 8,
mainAxisSpacing: 8,
children: List.generate(
21,
(index) => Card(
elevation: 50,
shadowColor: Colors.black,
color: Colors.grey[700],
child: SizedBox(
width: double.infinity,
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
children: const [
CircleAvatar(
backgroundColor: Colors.black,
radius: 60,
child: CircleAvatar(
backgroundImage: NetworkImage(
"https://avatars.githubusercontent.com/u/30810111?v=4"),
//NetworkImage
radius: 50,
),
),
],
),
),
),
)
)
),

```
![scroll_grid]

### ListView horizontal Scroll animations

if you want to add a horizontal animations, all what you have to do is to add a scroll direction to the widget and that's it
for example you can simply do this to show ListView horizontal Scroll animations
```dart
AnimatedListView(
duration: 100,
scrollDirection: Axis.horizontal,
children: List.generate(
21,
(index) => const Card(
elevation: 50,
margin: EdgeInsets.symmetric(horizontal: 10),
shadowColor: Colors.black,
color: Colors.grey,
child: SizedBox(
height: 300,
width: 200,
),
),
),
),
```
![horz_list]

# Sample source code

**[Example for all cases](https://github.com/lgvalle/Material-Animations/)**


## Contribute
Let's develop with collaborations. We would love to have contributions by raising issues and opening PRs. Filing an issue before PR is must.

## License
Project is published under the Apache 2.0 license. Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)

[library]: https://pub

[scroll_list]: https://github.com/Ezaldeen99/Shaky_animated_list/blob/master/assets/scroll_list.gif

[scroll_grid]: https://github.com/Ezaldeen99/Shaky_animated_list/blob/master/assets/grid_scroll.gif

[shaking_grid]: https://github.com/Ezaldeen99/Shaky_animated_list/blob/master/assets/shaking_grid.gif

[horz_list]: https://github.com/Ezaldeen99/Shaky_animated_list/blob/master/assets/horz_list.gif