Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 793 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 793 Bytes

Infinite Scrolling for AngularDart

AngularDart-port of Brandon Tilley's ngInfiniteScroll.

Usage

First, import the package and register the module:

import 'package:ng_infinite_scroll/ng_infinite_scroll.dart';

class MyModule extends Module {
    MyModule() {
        install(new InfiniteScrollModule());
    }
}

Next, use the directive in your template:

<div infinite-scroll="ctrl.loadMore()" infinite-scroll-disabled="ctrl.loading" infinite-scroll-distance="3"></div>

This directive supports the same options as the original version, so check the documentation of ngInfiniteScroll for details.