alist

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

alist

alist #









Intro #
A simplified animated listview/grid with optional sticky header, refresher, and scrollbar.
Features #

Sliver implementation
pull up load and pull down refresh
Customized Scrollbar
Dependencies: flutter_sticky_header, auto_animated, pull_to_refresh, bordered_text

Usage #
add this line to pubspec.yaml

dependencies:

alist: ^0.0.1


copied to clipboard
import package

import 'package:alist/alist.dart';

copied to clipboard
Simple example:

@override
Widget build(BuildContext context) {
return AList(
scrollBar: true,
scrollColor: const Color(0xff667AD9),
onRefresh: () => reload(),
children: loaded.map((item)=>
Container(
child: Text(item.text)
)
).toList()
);
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.