Commit 31cd3c7b authored by Jonah Williams's avatar Jonah Williams Committed by Flutter GitHub Bot

[flutter_tools] fast start off by default (#49554)

parent f3235404
......@@ -187,9 +187,12 @@ class RunCommand extends RunCommandBase {
hide: true,
help: 'Whether to automatically invoke webOnlyInitializePlatform.',
)
// TODO(jonahwilliams): Off by default with investigating whether this
// is slower for certain use cases.
// See: https://github.com/flutter/flutter/issues/49499
..addFlag('fast-start',
negatable: true,
defaultsTo: true,
defaultsTo: false,
help: 'Whether to quickly bootstrap applications with a minimal app. '
'Currently this is only supported on Android devices. This option '
'cannot be paired with --use-application-binary.'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment