How to order data from Firestore in Flutter, orderBy not ordering correct
问题 I'm building an app where the users can write into my db and ask questions to other users, like a doctor app. Where the doctors can answer the questions. I wanna order the questions by date, where I would like to order the questions by newest, and also the most popular. I try to order the newest by the following: date: "29 September 2019" Firestore.instance .collection("Questions") .orderBy("date", descending: true) // 1 will be last, 31 will be latest .snapshots(), But that seem not to work.