docs: add formats proposal

This commit is contained in:
Hugo Pointcheval 2023-01-26 23:56:48 +01:00
parent 3eb2949008
commit ee93f54653
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC
2 changed files with 6 additions and 6 deletions
tools/brick_generator

@ -227,6 +227,8 @@ vars:
description: The display name
default: Display Name
prompt: "What is the display name?"
formats:
- title_case
project_name:
compilable: wyatt_app_template
@ -234,6 +236,8 @@ vars:
description: The project name
default: wyatt_app
prompt: "What is the project name?"
formats:
- snake_case
bundle_id:
compilable: io.wyattapp.new
@ -241,6 +245,8 @@ vars:
description: The bundle id used in Android and iOS
default: io.wyattapp.new
prompt: "What is the bundle id?"
formats:
- dot_case
flutter:
type: boolean

@ -1,6 +0,0 @@
package {{#dotCase}}{{org_name}}{{/dotCase}}.{{#snakeCase}}{{project_name}}{{/snakeCase}}
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}