[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
|
||||
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
|
||||
const LazyLoadScrollView({
|
||||
Key key,
|
||||
@@ -39,7 +36,6 @@ class LazyLoadScrollView extends StatefulWidget {
|
||||
this.onPageScrollStart,
|
||||
this.onPageScrollEnd,
|
||||
this.onInBetweenOfPage,
|
||||
this.isLoading = false,
|
||||
this.scrollOffset = 100,
|
||||
}) : assert(child != null),
|
||||
super(key: key);
|
||||
|
||||
Reference in New Issue
Block a user