We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f323540 commit 31cd3c7Copy full SHA for 31cd3c7
1 file changed
packages/flutter_tools/lib/src/commands/run.dart
@@ -187,9 +187,12 @@ class RunCommand extends RunCommandBase {
187
hide: true,
188
help: 'Whether to automatically invoke webOnlyInitializePlatform.',
189
)
190
+ // TODO(jonahwilliams): Off by default with investigating whether this
191
+ // is slower for certain use cases.
192
+ // See: https://github.com/flutter/flutter/issues/49499
193
..addFlag('fast-start',
194
negatable: true,
- defaultsTo: true,
195
+ defaultsTo: false,
196
help: 'Whether to quickly bootstrap applications with a minimal app. '
197
'Currently this is only supported on Android devices. This option '
198
'cannot be paired with --use-application-binary.'
0 commit comments