-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_input_comments.json
60 lines (60 loc) · 1.95 KB
/
sample_input_comments.json
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
{
"appname" : "NewApp",
"width" : 320,//size for orientation
"height" : 480,
"device" : 1,// 0 - iphone, 1 - ipad, 2 - iphone5
"navbar" : {
"hidden" : 0,
"background" : "topbar.png"
},
"objects" : [
{
"type" : "label",
"name" : "Label1",
"frame" : "{{0, 20}, {400, 200}}",
"backgroundcolor" : [1.0, 1.0, 1.0, 1.0],
"text" : "Hello Label",
"font" : "Helvetica",
"fontsize" : 12,
"fontcolor" : [0, 0, 0, 1.0]
},
{
"type" : "textfield",
"name" : "TextField1",
"frame" : "{{400, 20}, {400, 200}}",
"backgroundcolor" : [1.0, 1.0, 1.0, 1.0],
"text" : "Hello TextField",
"placeholder" : "placeholder",
"font" : "Helvetica",
"fontsize" : 12,
"fontcolor" : [0, 0, 0, 1.0]
},
{
"type" : "button",
"name" : "Button1",
"frame" : "{{0, 220}, {400, 200}}",
"backgroundcolor" : [1.0, 1.0, 1.0, 0.0],
"text" : "Hello Button",
"background" : "",
"image" : "",
"font" : "Helvetica",
"fontsize" : 12,
"fontcolor" : [0, 0, 1, 1.0]
},
{
"type" : "view",
"name" : "View1",
"frame" : "{{0, 420}, {400, 200}}",
"backgroundcolor" : [0, 1.0, 0, 1.0],
"objects" : [
{
"type" : "image",
"name" : "image2",
"frame" : "{{0, 0}, {100, 100}}",
"backgroundcolor" : [1.0, 1.0, 1.0, 1.0],
"image" : "image1.png"
}
]
}
]
}