Skip to content

Commit 31cd3c7

Browse files
Jonah Williamsfluttergithubbot
authored andcommitted
[flutter_tools] fast start off by default (flutter#49554)
1 parent f323540 commit 31cd3c7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • packages/flutter_tools/lib/src/commands

packages/flutter_tools/lib/src/commands/run.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,12 @@ class RunCommand extends RunCommandBase {
187187
hide: true,
188188
help: 'Whether to automatically invoke webOnlyInitializePlatform.',
189189
)
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
190193
..addFlag('fast-start',
191194
negatable: true,
192-
defaultsTo: true,
195+
defaultsTo: false,
193196
help: 'Whether to quickly bootstrap applications with a minimal app. '
194197
'Currently this is only supported on Android devices. This option '
195198
'cannot be paired with --use-application-binary.'

0 commit comments

Comments
 (0)