We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e8f7f commit 4561023Copy full SHA for 4561023
lib/main.dart
@@ -114,18 +114,14 @@ class MyApp extends StatelessWidget {
114
VGuard(
115
beforeEnter: (stackedRoutes) async {
116
GetIt.I<DrawerProvider>().title = 'Notes';
117
- if (GetIt.I<BulletinProvider>()
118
- .bulletin
119
- .branches
120
- .isEmpty) {
121
- Future.delayed(
122
- const Duration(
123
- milliseconds: 500,
124
- ),
125
- () => GetIt.I<GlobalKey<RefreshIndicatorState>>()
126
- .currentState
127
- ?.show());
128
- }
+
+ Future.delayed(
+ const Duration(
+ milliseconds: 500,
+ ),
+ () => GetIt.I<GlobalKey<RefreshIndicatorState>>()
+ .currentState
+ ?.show());
129
},
130
stackedRoutes: [
131
VWidget(
0 commit comments