Commit 74f50bfb authored by Dan Rubel's avatar Dan Rubel Committed by GitHub

improve the default help to include common actions (#5980)

parent 3f68e187
......@@ -28,7 +28,16 @@ const String kFlutterEnginePackageName = 'sky_engine';
class FlutterCommandRunner extends CommandRunner {
FlutterCommandRunner({ bool verboseHelp: false }) : super(
'flutter',
'Manage your Flutter app development.'
'Manage your Flutter app development.\n'
'\n'
'Common actions:\n'
'\n'
' flutter create <output directory>\n'
' Create a new Flutter project in the specified directory.\n'
'\n'
' flutter run [options]\n'
' Run your Flutter application on an attached device\n'
' or in an emulator.',
) {
argParser.addFlag('verbose',
abbr: 'v',
......
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