We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20da5c1 commit afc0eb7Copy full SHA for afc0eb7
packages/flutter_tools/bin/flutter_tools.dart
@@ -4,6 +4,14 @@
4
5
import 'package:flutter_tools/executable.dart' as executable;
6
7
+// Temporary workaround for https://github.com/flutter/flutter/issues/9727
8
+bool get initializeLibNotify {
9
+ final DateTime date = new DateTime.now();
10
+ return date.month == 1;
11
+}
12
+
13
void main(List<String> args) {
14
+ // ignore: UNUSED_LOCAL_VARIABLE
15
+ final bool x = initializeLibNotify;
16
executable.main(args);
17
}
0 commit comments