【问题标题】:Displaying Firebase Firestore Listview Data as a list Flutter将 Firebase Firestore Listview 数据显示为列表 Flutter
【发布时间】:2019-05-03 12:52:32
【问题描述】:

我目前能够显示一个列表视图,其中填充了我的 Firestore 数据库中的数据。我目前的问题是,我想让它被解雇,所以我需要能够使用以下功能:

  setState(() {
    items.removeAt(index);
  });

现在,我阅读了有关如何生成列表的内容,但没有一个示例提到我正在使用的 firebase Streambuilder。所以我只是想知道是否可以将数据放入列表中?如果没有,是否有任何其他方法可以使 Firestore 列表视图被解雇?以下是我目前获取数据的方式:

Container(
          child: StreamBuilder(
            stream: Firestore.instance.collection('users').snapshots(),
            builder: (context, snapshot) {
              if (!snapshot.hasData) {
                return Center(
                  child: CircularProgressIndicator(
                    valueColor: AlwaysStoppedAnimation<Color>(themeColor),
                  ),
                );
              } else {
                return ListView.builder(
                  scrollDirection: Axis.vertical,
                  padding: EdgeInsets.all(10.0),
                  itemBuilder: (context, index) => buildItem(context, snapshot.data.documents[index]),
                  itemCount: snapshot.data.documents.length,
                );
              }
            },
          ),
        ),

在此先感谢,如果有任何帮助,我们将不胜感激。

Builditem 看起来像这样:

  Widget buildItem(BuildContext context, DocumentSnapshot document) {
if (document['id'] == currentUserId || document['gender'] == null) {
  return Container();
}
if (currentUserPreference == 'male' && currentUserGender == 'male') {
  return showGayMales(document);
}

ShowGayMales 方法如下所示:

 Widget showGayMales(DocumentSnapshot document) {      
   if (document['id'] == currentUserId || document['id'] == nopeId || ) {
     return Container();
   } else {
     return Container(
        child: Slidable(
          delegate: new SlidableScrollDelegate(),
          actionExtentRatio: 0.3,
        child: Card(
          child: Padding(
          padding:EdgeInsets.fromLTRB(20.0, 10.0, 25.0, 10.0),
          child: Row(
            children: <Widget>[
              Material(
                color: Colors.transparent,
                child: Icon(
                  FontAwesomeIcons.male,
                  color: textColor,
                ),
              ),
              new Flexible(
                child: Container(
                    child: new Column(
                      children: <Widget>[
                        new Container(
                          child: Text(
                      '${document['aboutMe']}',
                            style: TextStyle(color: textColor, fontSize: 30.0),
                        ),
                        alignment: Alignment.centerLeft,
                        margin: new EdgeInsets.fromLTRB(10.0, 0.0, 0.0, 5.0),
                      ),
                      new Container(
                        child: Row(
                          children: <Widget>[
                            Text(
                            '-'+'${document['nickname'] ?? 'Not available'}',
                            style: TextStyle(color: textColor, fontSize: 15.0, fontWeight: FontWeight.bold),
                            ),
                            Text(
                              ','+' ${document['age'] ?? ''}'
                            )
                          ],
                        ),
                        alignment: Alignment.centerLeft,
                        margin: new EdgeInsets.fromLTRB(10.0, 0.0, 0.0, 0.0),
                      )
                    ],
                  ),
                  margin: EdgeInsets.only(left: 20.0),
                ),
              ),
            ],
          ),
          ),
          shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)),
          ),
            actions: <Widget>[
             new IconSlideAction(
             caption: 'Not interested!',
             color: errorColor,
             icon: Icons.clear,
             onTap: () => notinterested('${document['id']}'),
             ),
            ],
            secondaryActions: <Widget>[
              new IconSlideAction(
              caption: "Interested!",
                color: primaryColor,
              icon: Icons.check,
              onTap: () => interested('${document['nickname']}', '${document['id']}', '${document['gender']}', '${document['aboutMe']}', '${document['age']}', '${document['preference']}'),
              ),
            ],
        ),
        margin: EdgeInsets.only(bottom: 10.0, left: 5.0, right: 5.0),
      );
   }
  }

【问题讨论】:

  • 如果你能添加你的buildItem方法会更好
  • 刚刚编辑过,谢谢提醒

标签: firebase dart flutter google-cloud-firestore


【解决方案1】:

您可以先将 Firestore 数据映射到对象,然后将其添加到列表中。

List<Users> userList;
Future<void> getUsers() async {
  userList = [];
  var collection = FirebaseFirestore.instance.collection('users');
  collection.get().then((value) {
    value.docs.forEach((users) {
      debugPrint('get Users ${users.data()}');
      setState(() {
        // Map users.data to your User object and add it to the List
        userList.add(User(User.setUserDetails(users.data()))); 
      });
    });
  });
}

// Let's say this is User object
class User {
  var username;

  User(User doc) {
    this.username = doc.getUsername();
  }

  getUsername() => username;

  // fetch name using Firestore field name
  User.setUserDetails(Map<dynamic, dynamic> doc)
      : username = doc['name']; 
}

【讨论】:

    猜你喜欢
    • 2023-03-16
    • 2023-02-10
    • 2014-03-04
    • 1970-01-01
    • 2019-05-24
    • 2019-02-26
    • 1970-01-01
    • 2021-12-23
    相关资源
    最近更新 更多