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

EvidentSolutions/dart-ng-infinite-scroll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.