pretty_list_animation 1.0.0 copy "pretty_list_animation: ^1.0.0" to clipboard
pretty_list_animation: ^1.0.0 copied to clipboard

A flutter package that will simplify the creation of animated lists for you, replete with refresh and infiniteLoading, of course.

#

flutter
cover
A flutter package that will simplify the creation of animated lists for you, replete with refresh and infiniteLoading, of course.


Example #

    PrettyListAnimation(
      onRefresh: () async {},
      padding: const EdgeInsets.all(16),
      items: numbers,
      itemBuilder: (context, number, index, animation) {
        return SizeTransition(
          sizeFactor: animation,
          child: SizedBox(
            height: 80.0,
            child: Card(
              color: Color.fromRGBO(
                Random().nextInt(256),
                Random().nextInt(256),
                Random().nextInt(256),
                1,
              ),
              child: Center(
                child: Text('Item $number'),
              ),
            ),
          ),
        );
      },
    );

Output #

output


flutter

5
likes
0
pub points
10%
popularity

Publisher

verified publisherkodingworks.io

A flutter package that will simplify the creation of animated lists for you, replete with refresh and infiniteLoading, of course.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

diffutil_dart, flutter

More

Packages that depend on pretty_list_animation