Make _loadList async to make it satisfy the refresh listener
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
kolaente 2020-06-16 16:15:20 +02:00
parent 7bd340f45c
commit ac2d9722e9
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -88,7 +88,7 @@ class _ListPageState extends State<ListPage> {
));
}
Future<void> _loadList() {
Future<void> _loadList() async {
_loadTasksForPage(1);
}