标签: listview flutter dart future
我要从表中返回行数,并尝试将其用作listview构建器中的itemCount。但是listview生成器显示此错误
The argument type 'Future<int>' can't be assigned to the parameter type 'int'
该如何解决?
答案 0 :(得分:-1)
将方法的返回类型更改为Future而不是int。