We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc8fca commit b671f8eCopy full SHA for b671f8e
lib/src/realtime_db_pagination.dart
@@ -190,7 +190,7 @@ class _RealtimeDBPaginationState extends State<RealtimeDBPagination> {
190
final docsLimit = _data.length + (getMore ? widget.limit : 0);
191
var docsQuery = widget.query.limitToFirst(docsLimit);
192
if (_data.isNotEmpty) {
193
- docsQuery = docsQuery.startAt(_data.first);
+ docsQuery = docsQuery.startAt(null, key: _data.first.key);
194
}
195
196
_streamSub = docsQuery.onValue.listen((DatabaseEvent snapshot) async {
0 commit comments