-
Notifications
You must be signed in to change notification settings - Fork 1
/
brick.yaml
64 lines (62 loc) · 1.93 KB
/
brick.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: macosui_starter
description: A starter Flutter application for macOS that uses macos_ui
repository: https://github.com/GroovinChip/macosui_starter
version: 2.0.0
# The following defines the environment for the current brick.
# It includes the version of mason that the brick requires.
environment:
mason: ">=0.1.0-dev <0.1.0"
# Variables specify dynamic values that your brick depends on.
# Zero or more variables can be specified for a given brick.
# Each variable has:
# * a type (string, number, or boolean)
# * an optional short description
# * an optional default value
# * an optional prompt phrase used when asking for the variable.
vars:
app_name:
type: string
description: The name of your application
default: macosui_starter
prompt: App name?
app_description:
type: string
description: The description of your application
default: A starter Flutter application for macOS with macos_ui
prompt: App description?
org_name:
type: string
description: The name of your organization
default: com.example
prompt: Organization name?
# toolbar_style:
# type: enum
# description: The style of the application window's toolbar
# default: unified
# prompt: Toolbar style?
# values:
# - automatic
# - expanded
# - preference
# - unified
# - unifiedCompact
debug_label_on:
type: boolean
description: Whether to show the debug label by default
default: false
prompt: Show debug label?
custom_system_menu_bar:
type: boolean
description: Whether to add a basic custom system menu bar
default: false
prompt: Use custom system menu bar?
# add_multi_window:
# type: boolean
# description: Whether to add basic multi-window support
# default: false
# prompt: Add multi-window support?
initialize_git_repo:
type: boolean
description: Whether to auto-initialize a git repository
default: false
prompt: Initialize git?