简体   繁体   English

将 Firebase Firestore Listview 数据显示为列表 Flutter

[英]Displaying Firebase Firestore Listview Data as a list Flutter

I am currently able to display a Listview filled with data from my Firestore database.我目前能够显示一个 Listview,其中包含来自我的 Firestore 数据库的数据。 My current problem is, that I want to make it dissmissable, so I need to be able to use functions such as:我目前的问题是,我想让它被驳回,所以我需要能够使用以下功能:

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

Now, I read up on how to generate a list, but none of the examples mention a firebase Streambuilder like I am using.现在,我阅读了如何生成列表,但没有一个示例提到我正在使用的 firebase Streambuilder。 So I was just wondering if it was possible to make the data into a list?所以我只是想知道是否可以将数据制成列表? And if not, if there are any other ways to make a firestore listview dissmissable?如果没有,是否还有其他方法可以使 firestore listview 可关闭? Here is how I currently get the data:这是我目前获取数据的方式:

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,
                );
              }
            },
          ),
        ),

Thanks in advance, any help is appreciated.提前致谢,任何帮助表示赞赏。

Builditem looks like this: Builditem 看起来像这样:

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

And the ShowGayMales method looks like this: 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),
      );
   }
  }

You can fetch Firestore data and add it to a List by mapping it to an Object first.您可以通过首先将 Firestore 数据映射到对象来获取 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']; 
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM