[Core -> LazyLoadScrollView] Remove isLoading property
Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
@@ -27,9 +27,6 @@ class LazyLoadScrollView extends StatefulWidget {
|
|||||||
/// The offset to take into account when triggering [onEndOfPage]/[onStartOfPage] in pixels
|
/// The offset to take into account when triggering [onEndOfPage]/[onStartOfPage] in pixels
|
||||||
final double scrollOffset;
|
final double scrollOffset;
|
||||||
|
|
||||||
/// Used to determine if loading of new data has finished. You should use set this if you aren't using a FutureBuilder or StreamBuilder
|
|
||||||
final bool isLoading;
|
|
||||||
|
|
||||||
/// Initiates a LazyLoadScrollView widget
|
/// Initiates a LazyLoadScrollView widget
|
||||||
const LazyLoadScrollView({
|
const LazyLoadScrollView({
|
||||||
Key key,
|
Key key,
|
||||||
@@ -39,7 +36,6 @@ class LazyLoadScrollView extends StatefulWidget {
|
|||||||
this.onPageScrollStart,
|
this.onPageScrollStart,
|
||||||
this.onPageScrollEnd,
|
this.onPageScrollEnd,
|
||||||
this.onInBetweenOfPage,
|
this.onInBetweenOfPage,
|
||||||
this.isLoading = false,
|
|
||||||
this.scrollOffset = 100,
|
this.scrollOffset = 100,
|
||||||
}) : assert(child != null),
|
}) : assert(child != null),
|
||||||
super(key: key);
|
super(key: key);
|
||||||
|
|||||||
Reference in New Issue
Block a user