Firestoreに値を追加するとエラーが出ます。
error
1A non-null String must be provided to a Text widget. 2'package:flutter/src/widgets/text.dart': 3Failed assertion: line 360 pos 10: 'data != null'
-Firebase画面では、値が表示されています。
(Androidエミュレーターで入力した値が、Firebaseに転送)
解決策を教えて頂けると嬉しいです。
model
1import 'package:cloud_firestore/cloud_firestore.dart'; 2import 'package:flutter/material.dart'; 3import 'book.dart'; 4 5class AppleListModel extends ChangeNotifier { 6 List<Apple> apple = []; 7 8 Future<void> fetchApples() async { 9 final docs = await Firestore.instance.collection('apple').getDocuments(); 10 final apple = docs.documents.map((doc) => Apple(doc['numbers'])).toList(); 11 this.apple = apple; 12 notifyListeners(); 13 } 14}
list
1import 'package:flutter/material.dart'; 2import 'package:provider/provider.dart'; 3 4import 'book_list_model.dart'; 5 6class AppleList extends StatelessWidget { 7 @override 8 Widget build(BuildContext context) { 9 return ChangeNotifierProvider<AppleListModel>( 10 create: (_) => AppleListModel()..fetchApples(), 11 child: Scaffold( 12 body: Consumer<AppleListModel>(builder: (context, model, child) { 13 final tests = model.apple; 14 final listTiles = 15 tests.map((tests) => ListTile(title: Text(tests.title))).toList(); 16 return ListView( 17 children: listTiles, 18 ); 19 }), 20 ), 21 ); 22 } 23}
dart
1class Apple { 2 String title; 3 Apple(this.title); 4}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。