format
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-01-16 22:10:51 +01:00
parent 5f7d59c7ea
commit d08c7c3e70
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 3 deletions

View File

@ -77,9 +77,11 @@ class _ListPageState extends State<ListPage> {
// in _loadTasksForPage()?
_loadTasksForPage(_currentPage);
}
return index < _tasks.length ? TaskTile(
task: _tasks[index],
): null;
return index < _tasks.length
? TaskTile(
task: _tasks[index],
)
: null;
})
: Center(child: Text('This list is empty.')),
onRefresh: _loadList,