fl_scroll_view 0.0.1 copy "fl_scroll_view: ^0.0.1" to clipboard
fl_scroll_view: ^0.0.1 copied to clipboard

fl_scroll_view encapsulates and extends easy_refresh and flutter_staggered_grid_view.

fl_scroll_view #

Run Web example #

ScrollList.count #

Widget build(BuildContext context) {
  return ScrollList.count(
      header: const Header(),
      footer: const Footer(),
      padding: const EdgeInsets.all(10),
      maxCrossAxisExtent: 100,
      crossAxisCount: 3,
      mainAxisSpacing: 10,
      crossAxisSpacing: 10,
      gridStyle: GridStyle.masonry,
      refreshConfig: RefreshConfig(
          onRefresh: () async {
            debugPrint('onRefresh');
            await Future.delayed(const Duration(seconds: 2), () {
              RefreshControllers().call(EasyRefreshType.refreshSuccess);
            });
          }, onLoading: () async {
        debugPrint('onLoading');
        await Future.delayed(const Duration(seconds: 2), () {
          RefreshControllers().call(EasyRefreshType.loadingSuccess);
        });
      }),
      children: []);
}

ScrollList.builder #

Widget build(BuildContext context) {
  return ScrollList.builder(
      header: const Header(),
      footer: const Footer(),
      maxCrossAxisExtent: 100,
      crossAxisCount: 3,
      mainAxisSpacing: 10,
      crossAxisSpacing: 10,
      gridStyle: GridStyle.masonry,
      separatorBuilder: (_, int index) => Divider(),
      refreshConfig: RefreshConfig(
          onRefresh: () async {
            debugPrint('onRefresh');
            await Future.delayed(const Duration(seconds: 2), () {
              RefreshControllers().call(EasyRefreshType.refreshSuccess);
            });
          }, onLoading: () async {
        debugPrint('onLoading');
        await Future.delayed(const Duration(seconds: 2), () {
          RefreshControllers().call(EasyRefreshType.loadingSuccess);
        });
      }),
      children: []);
}

Sliver #

Widget build(BuildContext context) {
  return RefreshScrollView(
      controller: scrollController,
      refreshConfig: RefreshConfig(
          onRefresh: () async {
            debugPrint('onRefresh');
            await Future.delayed(const Duration(seconds: 2), () {
              RefreshControllers().call(EasyRefreshType.refreshSuccess);
            });
          }, onLoading: () async {
        debugPrint('onLoading');
        await Future.delayed(const Duration(seconds: 2), () {
          RefreshControllers().call(EasyRefreshType.loadingSuccess);
        });
      }),
      slivers: [
        FlSliverPersistentHeader(
            pinned: true,
            floating: false,
            child: Container(
                color: colorList[9],
                alignment: Alignment.center,
                child: const Text('FlSliverPersistentHeader',
                    style: TextStyle(color: Colors.black)))),
        SliverListGrid.builder(
            itemCount: colorList.length,
            maxCrossAxisExtent: 100,
            crossAxisCount: 3,
            mainAxisSpacing: 10,
            crossAxisSpacing: 10,
            gridStyle: GridStyle.masonry,
            separatorBuilder: (_, int index) {
              return Text('s$index');
            },
            itemBuilder: (_, int index) {
              return ColorEntry(index, colorList[index]);
            }),
        SliverListGrid.count(
            maxCrossAxisExtent: 100,
            crossAxisCount: 3,
            mainAxisSpacing: 10,
            crossAxisSpacing: 10,
            gridStyle: GridStyle.masonry,
            children: [
            ]),
      ]);
}
0
likes
140
pub points
44%
popularity

Publisher

unverified uploader

fl_scroll_view encapsulates and extends easy_refresh and flutter_staggered_grid_view.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

easy_refresh, flutter, flutter_staggered_grid_view

More

Packages that depend on fl_scroll_view