File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ Usage: very_good create <subcommand> <project-name> [arguments]
5757-h, --help Print this usage information.
5858
5959Available subcommands:
60+ app_ui_package Generate a Very Good App UI package.
6061 dart_cli Generate a Very Good Dart CLI application.
6162 dart_package Generate a Very Good Dart package.
6263 docs_site Generate a Very Good documentation site.
@@ -80,6 +81,9 @@ very_good create flutter_app my_app --desc "My new Flutter app" --org "com.custo
8081# Create a new Flutter app named my_app with a custom application id
8182very_good create flutter_app my_app --desc " My new Flutter app" --application-id " com.custom.app.id"
8283
84+ # Create a new App UI package named my_app_ui_package
85+ very_good create app_ui_package my_app_ui_package --desc " My new App UI package"
86+
8387# Create a new Flame game named my_game
8488very_good create flame_game my_game --desc " My new Flame game"
8589
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ Creates a new Dart or Flutter project from a template.
9191{
9292 "tool" : " create" ,
9393 "arguments" : {
94- "subcommand" : " flutter_app | flutter_package | flutter_plugin | flame_game | dart_cli | dart_package | docs_site" ,
94+ "subcommand" : " flutter_app | flutter_package | flutter_plugin | flame_game | dart_cli | dart_package | docs_site | app_ui_package " ,
9595 "name" : " my_app" ,
9696 "description" : " A Very Good Project created by Very Good CLI." ,
9797 "org_name" : " com.example.verygoodcore" ,
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ Create a very good Dart or Flutter project in seconds based on the provided temp
6060 'subcommand' : UntitledSingleSelectEnumSchema (
6161 description: '''
6262The available subcommands to provide an specific template, are:
63+ app_ui_package - Generate a Very Good App UI package.
6364dart_cli - Generate a Very Good Dart CLI application.
6465dart_package - Generate a Very Good Dart package.
6566docs_site - Generate a Very Good documentation site.
@@ -69,6 +70,7 @@ flutter_package - Generate a Very Good Flutter package.
6970flutter_plugin - Generate a Very Good Flutter plugin.
7071''' ,
7172 values: [
73+ 'app_ui_package' ,
7274 'flame_game' ,
7375 'flutter_app' ,
7476 'flutter_package' ,
You can’t perform that action at this time.
0 commit comments