Flutterを触り始めてまだ日が浅いものです。
BottomNavigationBarとStreamBuilderを利用したアプリを開発しているのですが、
行いたいこと
・BottomNavigationBarの一つのタブでfirestoreのフィールドの値を一覧で表示したい
現状
・firestoreのフィールドの値が取得できない(おそらくStreamBuilder??の記述方法に問題??)
行なったこと
・Textウィジェットを使用したプリントデバッグ(Flutter2内のStreamBuilderを返すところをreturn Text("hoge")と変えたところ正常に動作する。)
どなたかBottomNavigationBar内のタグでStreamBuilderを使用してFirestoreからフィールドの一覧を取得する方法を教えていただけませんか?
よろしくお願いいたします。
Flutter1
1class MyHomePage extends StatefulWidget { 2 MyHomePage({Key key, this.title}) : super(key: key); 3 4 final String title; 5 6 @override 7 _MyHomePageState createState() => _MyHomePageState(); 8} 9 10class _MyHomePageState extends State<MyHomePage> { 11 //bottombarを使う時に必要 12 int _selectedIndex = 0; 13 // 表示する Widget の一覧 14 static List<Widget> _pageList = [ 15 post_users(), 16 home_users_page(), 17 post_users() 18 ]; 19 20 @override 21 Widget build(BuildContext context) { 22 return Scaffold( 23 appBar: AppBar( 24 title: Text(widget.title), 25 ), 26 body: ListView(children: [ 27 Center( 28 child: Column( 29 mainAxisAlignment: MainAxisAlignment.center, 30 children: <Widget>[ 31 _pageList[_selectedIndex], 32 ], 33 ), 34 ), 35 ]), 36 bottomNavigationBar: BottomNavigationBar( 37 items: const <BottomNavigationBarItem>[ 38 BottomNavigationBarItem( 39 icon: Icon(Icons.list), 40 title: Text('投稿一覧'), 41 ), 42 BottomNavigationBarItem( 43 icon: Icon(Icons.search), 44 title: Text('店を探す'), 45 ), 46 BottomNavigationBarItem( 47 icon: Icon(Icons.home), 48 title: Text('マイページ'), 49 ), 50 ], 51 currentIndex: _selectedIndex, 52 onTap: _onItemTapped, 53 ), 54 ); 55 } 56 57 // タップ時の処理 58 void _onItemTapped(int index) { 59 setState(() { 60 _selectedIndex = index; 61 }); 62 } 63}
Flutter2
1class post_users extends StatelessWidget { 2 @override 3 Widget build(BuildContext context) { 4 final titleTextStyle = Theme.of(context).textTheme.title; 5 return StreamBuilder<QuerySnapshot>( 6 stream: Firestore.instance.collection('books').snapshots(), 7 builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) { 8 return ListView( 9 children: snapshot.data.documents.map((DocumentSnapshot document) { 10 return ListTile( 11 title: Text(document['title']), 12 ); 13 }).toList(), 14 ); 15 }, 16 ); 17 } 18}
あなたの回答
tips
プレビュー