Fix loading state not being set
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-04-27 19:38:04 +02:00
parent 9fd47cde57
commit bb6139cef7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class _ListPageState extends State<ListPage> {
.get(widget.taskList.id)
.then((list) {
setState(() {
_loading = false;
_loading = true;
_list = list;
});
_loadTasksForPage(_currentPage);