-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodal.json
More file actions
41 lines (41 loc) · 986 Bytes
/
Copy pathmodal.json
File metadata and controls
41 lines (41 loc) · 986 Bytes
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
{
"class": "UIView",
"name": "modal",
"layout": {
"flex-direction": "column",
"align-items": "flex-start",
"justify-content": "center",
"margin-bottom": 24,
"margin-top": 24,
"margin-start": 24,
"margin-end": 24
},
"appearance": {
"title" : "Modal sample",
"backgroundColor": {
"type": "color",
"value": "grayColor"
}
},
"items": [
{
"class": "UILabel",
"name": "close",
"layout": {
"flex-direction": "column",
"align-items": "center",
"justify-content": "center",
"margin-top": "50%"
},
"appearance": {
"text": "Tap to close"
},
"actions": [
{
"type": "pop",
"trigger": "tap"
}
]
}
]
}