如何解决“无法将参数类型'Future <int>'分配给参数类型'int'”

时间:2020-05-22 08:20:03

标签: listview flutter dart future

我要从表中返回行数,并尝试将其用作listview构建器中的itemCount。但是listview生成器显示此错误

The argument type 'Future<int>' can't be assigned to the parameter type 'int'

该如何解决?

1 个答案:

答案 0 :(得分:-1)

将方法的返回类型更改为Future而不是int。