We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe0bfea commit 8147e3cCopy full SHA for 8147e3c
lib/pages/project/project_task_list.dart
@@ -55,6 +55,7 @@ class _ListPageState extends State<ListPage> {
55
_keyboardController.onChange.listen((visible) {
56
if (!visible && mounted) FocusScope.of(context).unfocus();
57
});
58
+ Future.delayed(Duration.zero, _loadList);
59
super.initState();
60
}
61
@@ -73,7 +74,6 @@ class _ListPageState extends State<ListPage> {
73
74
75
switch (taskState.pageStatus) {
76
case PageStatus.built:
- Future.delayed(Duration.zero, _loadList);
77
body = new Stack(children: [
78
ListView(),
79
Center(
0 commit comments