### 実現したいこと
下記のようなプログラムで、端末に保存したuidを使って、firebaseからログインした個人のデータを持ってきたいと考えています。
問題点
uidを取得し、端末に保存することはできたのですが、firebaseからに保存してあるデータを持ってくることができません。
プログラムが根本的に間違っているかもしれません。
ご教授よろしくお願いいたします。
dart
1class TimerModel extends ChangeNotifier{ 2 3 List<Time> timeList = []; 4 5 Future getTimerList() async { 6 final SharedPreferences prefs = await SharedPreferences.getInstance(); 7 String myuid = prefs.getString('my_uid'); 8 9 final snapshot = 10 await FirebaseFirestore.instance 11 .collection('users').doc(myuid) 12 .collection('timer').get(); 13 final docs = snapshot.docs; 14 final timeList = docs.map((doc) => Time(doc)).toList(); 15 this.timeList = timeList; 16 17 notifyListeners(); 18 } 19 20 Future getTimerListRealtime() async { 21 22 final SharedPreferences prefs = await SharedPreferences.getInstance(); 23 String myuid = prefs.getString('my_uid'); 24 25 final snapshots = 26 await FirebaseFirestore.instance 27 .collection('users').doc(myuid) 28 .collection('timer').snapshots(); 29 snapshots.listen((snapshot){ 30 final docs = snapshot.docs; 31 final timeList = docs.map((doc) => Time(doc)).toList(); 32 this.timeList = timeList; 33 notifyListeners(); 34 }); 35 } 36}
dart
1class TimerList extends StatelessWidget { 2 3 4 Widget build(BuildContext context) { 5 6 return Consumer<TimerModel>(builder: (context, model, child) { 7 return Scaffold( 8 appBar: AppBar( 9 title: Text('タイマーリスト'), 10 centerTitle: true, 11 actions: [ 12 InkWell( 13 onTap: ()async{ 14 final SharedPreferences prefs = await SharedPreferences.getInstance(); 15 String myuid = prefs.getString('my_uid'); 16 print(myuid); /*※ここはログインされているuidが出力されます*/ 17 }, 18 child: Icon(Icons.favorite_border, 19 ), 20 ) 21 ], 22 ), 23 body:Consumer<TimerModel>(builder: (context, model, child) { 24 final timerList = model.timeList; 25 return ListView( 26 children: timerList 27 .map( 28 (SetTiem) => Card( 29 child: Center( 30 child:Text(SetTiem.title, 31 ), 32 ), 33 ), 34 ).toList(), 35 ); 36 }), 37 ); 38 } 39 ); 40 } 41} 42
dart
1import 'package:cloud_firestore/cloud_firestore.dart'; 2import 'package:firebase_auth/firebase_auth.dart'; 3 4class Time { 5 6 Time(DocumentSnapshot doc){ 7 this.timer = doc['time']; 8 this.title = doc['title']; 9 } 10 String timer; 11 String title; 12}
回答1件
あなたの回答
tips
プレビュー