feat/enhance-generator #4

Merged
hugo merged 23 commits from feat/enhance-generator into master 2023-01-27 14:14:05 +00:00
140 changed files with 85 additions and 41 deletions
Showing only changes of commit 1646dbd919 - Show all commits

View File

@ -8,7 +8,7 @@
{
"language": "*",
"template": [
"Wyatt App Copyright (c) <<year>>"
"Display Name Copyright (c) <<year>>"
]
}
],

View File

@ -1,4 +1,4 @@
# Wyatt App
# Display Name
wyatt_description

View File

@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.wyattapp.new.wyatt_app_template">
<application
android:label="Wyatt App"
android:label="Display Name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity

View File

@ -1,15 +1,23 @@
name: wyatt_app_template
name: wyatt_app
description: New app template for Wyatt Studio projects.
path_to_brickify: wyatt_app_template
path_to_brickify: .
brick_ignore:
- .env
- brick_config.yaml
- .dart_tool/
- .idea/
- build/
- node_modules/
version: 0.1.0
vars:
display_name:
name: Wyatt App
name: Display Name
type: string
description: The display name
default: Wyatt App
default: Display Name
prompt: "What is the display name?"
project_name:

View File

@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Wyatt App</string>
<string>Display Name</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Wyatt App</string>
<string>Display Name</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View File

@ -5,4 +5,4 @@ output-dir: lib/gen/
nullable-getter: false
use-deferred-loading: true
synthetic-package: false
header: "/// Wyatt App, localized files. Automatically generated with `task gen:intl`."
header: "/// Display Name, localized files. Automatically generated with `task gen:intl`."

View File

@ -1,4 +1,4 @@
/// Wyatt App, localized files. Automatically generated with `task gen:intl`.
/// Display Name, localized files. Automatically generated with `task gen:intl`.
import 'dart:async';
import 'package:flutter/widgets.dart';

Some files were not shown because too many files have changed in this diff Show More