-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrick.yaml
51 lines (44 loc) · 1.54 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
name: easy_app_navbar
description: A new brick created with the Mason CLI.
repository: https://github.com/EasyFlutterApps/easy_app_blank
# The following defines the version and build number for your brick.
# A version number is three numbers separated by dots, like 1.2.34
# followed by an optional build number (separated by a +).
version: 0.1.0+1-dev.0.2
# 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:
dashboard:
type: string
description: Name for the main display.
default: Dashboard
prompt: What is your main screen?
first_screen:
type: string
description: Name for the first screen to display.
default: Home
prompt: What is your first screen?
second_screen:
type: string
description: Name for the second screen to display.
default: Search
prompt: What is your second screen?
third_screen:
type: string
description: Name for the third screen to display.
default: Bookmark
prompt: What is your third screen?
forth_screen:
type: string
description: Name for the forth screen to display.
default: User
prompt: What is your forth screen?