Skip to content

Commit

Permalink
fix pr review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lesnitsky committed Oct 5, 2023
1 parent 3561c30 commit 8cf2444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/firebase-ui-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ FirebaseDatabaseQueryBuilder(
);
```

With more power comes more responsibility:
### Caveats

1. Within the `itemBuilder` of our `GridView`, we have to manually ensure that we call the `fetchMore()` method on the snapshot when more data is required.
1. The `FirebaseDatabaseQueryBuilder` does not provide a list-view based handler, instead you must provide your own implementation.
2 changes: 1 addition & 1 deletion docs/firebase-ui-firestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ FirestoreQueryBuilder<Map<String, dynamic>>(
);
```

With more power comes more responsibility:
### Caveats

1. Within the `itemBuilder` of our `GridView`, we have to manually ensure that we call the `fetchMore()` method on the snapshot when more data is required.
1. The `FirestoreQueryBuilder` does not provide a list-view based handler, instead you must provide your own implementation.

0 comments on commit 8cf2444

Please sign in to comment.