我正在尝试根据返回值显示一个小部件。但是得到了下面的错误。
type 'Future<bool>' is not a subtype of type 'bool' in type cast以下是导致错误的源代码:
Future<bool> fetchCourses() async {
List courses = [];
final loggedInUser = FirebaseAuth.instance.currentUser;
if (loggedInUser != null) {
final userCollection = await FirebaseFirestore.instance.collection('users').doc(loggedInUser.uid).get();
courses = userCollection.get('coursesEnrolled');
}
if (courses.length == 0) {
return false;
} else {
return true;
}
}
.
.
.
bool hasCourses = fetchCourses() as bool;
.
.
.
hasCourses ? ListAllUserEnrolledCourses() : Container(),发布于 2021-08-09 19:18:52
fetchCourses()返回Future<bool>,请使用FutureBuilder解析Future。
FutureBuilder<bool>(
future: fetchCourses(),
builder: (_, snapshot) {
if (snapshot.hasData) {
return snapshot.data ? ListAllUserEnrolledCourses() : Container();
}
return Text('Loading...');
},
),https://stackoverflow.com/questions/68717449
复制相似问题