Я работаю с Firestore и ListView во Flutter.Каждый из них отлично работает для некоторых элементов в списке, но, прокручивая его дальше, чем видимые ограничения, я получил много сообщений: «метод был вызван по нулевому значению».Кажется, что ListView.builder не обрабатывает правильно весь запрос даты от Firebase или что-то вроде этого.
Это код:
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:father_home_flutter/screen_audio_selected.dart';
import 'package:father_home_flutter/model/utils.dart';
class AudioScreenList extends StatelessWidget {
static const String _collectionRussian = 'speech-ru';
static const String _loadingTextRussian = 'Loading...';
static const String _speechTitle = 'speechTitle';
static const String _speechSubtitle = 'speechSubtitle';
static const String _audioLink = 'audioLink';
static const String _pastorCode = 'pastorCode';
static const String _pastorName = 'pastorName';
static const String _id = "id";
@override
Widget build(BuildContext context) {
return Scaffold(
body: StreamBuilder(
stream: Firestore.instance
.collection(_collectionRussian)
.limit(100)
.orderBy(_id, descending: true)
.snapshots(),
builder: (context, snapshot) {
if (!snapshot.hasData)
return const Center(
child: Text(
_loadingTextRussian,
style: TextStyle(fontSize: 25.0, color: Colors.grey),
));
return ListView.builder(
itemCount: snapshot.data.documents.length,
itemBuilder: (BuildContext context, int i) =>
_buildRow(context, snapshot.data.documents[i]),
);
}));
}
Widget _buildRow(BuildContext context, DocumentSnapshot document) {
return Container(
margin: const EdgeInsets.fromLTRB(0.0, 8.0, 0.0, 0.0),
height: 90.0,
child: ListTile(
leading: Padding(
padding: EdgeInsets.fromLTRB(0.0, 20.0, 0.0, 0.0),
child: Hero(
tag: document[_audioLink],
child: new ClipOval(
child: Container(
width: 70.0,
height: 70.0,
child: Image.asset(
Utils.getImagePastor(document[_pastorCode]),
fit: BoxFit.cover,
),
)))),
title: Text(document[_speechTitle]),
subtitle:
Text(document[_speechSubtitle] + " - " + document[_pastorName]),
onTap: () => onPressed(context, document[_speechTitle],
document[_pastorCode], document[_audioLink])));
}
onPressed(BuildContext context, String speechTitle, String pastorCode,
String audioLink) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
ScreenAudioSelected(speechTitle, pastorCode, audioLink)));
}
}
, и это проблема на симуляторе:
Я искал в Интернете способы, как справиться с этим, но я только нашел примеры, где имитируют запрос к серверу, как этот пример https://flutter -academy.com / flutter-listview-infinite-scrolling /
Кто-нибудь сталкивался с такой же проблемой или имеет представление о том, как ее решить? *