@developer_tribe/react-builder 1.2.39 → 1.2.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/attributes-editor/FallbackLocalizationField.d.ts +6 -0
- package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +1 -40
- package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +1 -1
- package/dist/build-components/patterns.generated.d.ts +21 -344
- package/dist/components/BuilderProvider.d.ts +1 -0
- package/dist/components/DeviceButton.d.ts +4 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.d.ts +8 -0
- package/dist/index.web.esm.js +4 -4
- package/dist/index.web.esm.js.map +1 -1
- package/dist/mockOS/context/MockOSContext.d.ts +3 -1
- package/dist/product-base/types.d.ts +3 -0
- package/dist/size-matters/index.d.ts +1 -1
- package/dist/store.d.ts +31 -0
- package/dist/styles.css +1 -1
- package/dist/types/Device.d.ts +5 -0
- package/dist/types/PreviewConfig.d.ts +1 -1
- package/dist/utils/extractTextStyle/extractTextStyle.d.ts +1 -0
- package/dist/utils/extractViewStyle/extractViewStyle.d.ts +1 -0
- package/package.json +1 -1
- package/scripts/prebuild/assets/prompt_scheme.md +7 -0
- package/scripts/public/bin.js +0 -0
- package/src/DeviceMockFrame.tsx +8 -0
- package/src/RenderPage.tsx +3 -0
- package/src/assets/devices.json +747 -183
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/assets/samples/carousel-sample.json +30 -26
- package/src/assets/samples/paywall-1.json +31 -31
- package/src/assets/samples/paywall-2.json +28 -28
- package/src/assets/samples/paywall-app-delete-offer.json +29 -29
- package/src/assets/samples/paywall-app-open-offer.json +29 -29
- package/src/assets/samples/paywall-back-offer.json +28 -28
- package/src/assets/samples/paywall-notification-offer.json +28 -28
- package/src/assets/samples/simple-1.json +4 -4
- package/src/assets/samples/simple-2.json +25 -25
- package/src/assets/samples/unmigrated-builder-1.1.1.json +7 -7
- package/src/assets/samples/unmigrated-builder1.json +4 -4
- package/src/assets/samples/unvalidated-builder1.json +4 -4
- package/src/assets/samples/unvalidated-crash1.json +2 -2
- package/src/assets/samples/unvalidated-crashcomponent1.json +2 -2
- package/src/assets/samples/vpn-onboard-1.json +30 -30
- package/src/assets/samples/vpn-onboard-2.json +30 -30
- package/src/assets/samples/vpn-onboard-3.json +27 -27
- package/src/assets/samples/vpn-onboard-4.json +27 -27
- package/src/assets/samples/vpn-onboard-5.json +40 -40
- package/src/assets/samples/vpn-onboard-6.json +30 -30
- package/src/assets/samples/vpn-onboard-7.json +29 -29
- package/src/attribute-analyser/style/web/useExtractImageStyle.ts +8 -3
- package/src/attribute-analyser/style/web/useExtractViewStyle.ts +8 -3
- package/src/attributes-editor/AttributesEditorView.tsx +17 -6
- package/src/attributes-editor/FallbackLocalizationField.tsx +384 -0
- package/src/build-components/CarouselDots/CarouselDots.tsx +8 -3
- package/src/build-components/Main/Main.tsx +3 -1
- package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +15 -1
- package/src/build-components/NavigationBarColor/NavigationBarColorProps.generated.ts +1 -52
- package/src/build-components/NavigationBarColor/pattern.json +11 -2
- package/src/build-components/OnboardDot/OnboardDot.tsx +3 -2
- package/src/build-components/PaywallCloseButton/pattern.json +1 -0
- package/src/build-components/StatusBarColor/StatusBarColor.tsx +15 -1
- package/src/build-components/StatusBarColor/StatusBarColorProps.generated.ts +1 -1
- package/src/build-components/StatusBarColor/pattern.json +10 -1
- package/src/build-components/patterns.generated.ts +25 -364
- package/src/components/BottomBar.tsx +135 -31
- package/src/components/BuilderProvider.tsx +1 -0
- package/src/components/DeviceButton.tsx +35 -0
- package/src/components/EditorHeader.tsx +16 -1
- package/src/hooks/useLocalize.ts +3 -1
- package/src/hooks/useSafeAreaViewStyle.ts +24 -4
- package/src/index.web.ts +19 -0
- package/src/mockOS/context/MockOSContext.tsx +41 -13
- package/src/modals/DeviceSelectorModal.tsx +94 -10
- package/src/modals/InspectModal.tsx +112 -4
- package/src/product-base/buildPaywallLocalizationParams.ts +3 -0
- package/src/product-base/extractAndroidParams.ts +38 -8
- package/src/product-base/types.ts +3 -0
- package/src/size-matters/index.ts +15 -9
- package/src/store.ts +66 -0
- package/src/styles/modals/_product-edit-modal.scss +2 -2
- package/src/types/Device.ts +5 -0
- package/src/types/PreviewConfig.ts +6 -0
- package/src/utils/analyseNodeByPatterns.ts +6 -2
- package/src/utils/extractTextStyle/extractTextStyle.ts +3 -1
- package/src/utils/extractTextStyle/extractTextStyleNative.ts +1 -1
- package/src/utils/extractViewStyle/extractViewStyle.ts +19 -5
- package/src/utils/extractViewStyle/extractViewStyleNative.ts +5 -1
- package/src/utils/replaceLocalizationParams.ts +5 -7
package/src/assets/devices.json
CHANGED
|
@@ -7,9 +7,15 @@
|
|
|
7
7
|
"aspect": "tall",
|
|
8
8
|
"type": "phone",
|
|
9
9
|
"importance": 13,
|
|
10
|
-
"insets": [
|
|
10
|
+
"insets": [
|
|
11
|
+
47,
|
|
12
|
+
0,
|
|
13
|
+
34,
|
|
14
|
+
0
|
|
15
|
+
],
|
|
11
16
|
"navigationBarType": "homeIndicator",
|
|
12
|
-
"radius": 40
|
|
17
|
+
"radius": 40,
|
|
18
|
+
"multiplier": 0.96
|
|
13
19
|
},
|
|
14
20
|
{
|
|
15
21
|
"name": "iphone 12 pro",
|
|
@@ -19,9 +25,15 @@
|
|
|
19
25
|
"aspect": "tall",
|
|
20
26
|
"type": "phone",
|
|
21
27
|
"importance": 19,
|
|
22
|
-
"insets": [
|
|
28
|
+
"insets": [
|
|
29
|
+
47,
|
|
30
|
+
0,
|
|
31
|
+
34,
|
|
32
|
+
0
|
|
33
|
+
],
|
|
23
34
|
"navigationBarType": "homeIndicator",
|
|
24
|
-
"radius": 40
|
|
35
|
+
"radius": 40,
|
|
36
|
+
"multiplier": 0.96
|
|
25
37
|
},
|
|
26
38
|
{
|
|
27
39
|
"name": "iphone 13",
|
|
@@ -31,9 +43,15 @@
|
|
|
31
43
|
"aspect": "tall",
|
|
32
44
|
"type": "phone",
|
|
33
45
|
"importance": 4,
|
|
34
|
-
"insets": [
|
|
46
|
+
"insets": [
|
|
47
|
+
47,
|
|
48
|
+
0,
|
|
49
|
+
34,
|
|
50
|
+
0
|
|
51
|
+
],
|
|
35
52
|
"navigationBarType": "homeIndicator",
|
|
36
|
-
"radius": 40
|
|
53
|
+
"radius": 40,
|
|
54
|
+
"multiplier": 0.96
|
|
37
55
|
},
|
|
38
56
|
{
|
|
39
57
|
"name": "iphone 13 pro",
|
|
@@ -43,9 +61,15 @@
|
|
|
43
61
|
"aspect": "tall",
|
|
44
62
|
"type": "phone",
|
|
45
63
|
"importance": 8,
|
|
46
|
-
"insets": [
|
|
64
|
+
"insets": [
|
|
65
|
+
47,
|
|
66
|
+
0,
|
|
67
|
+
34,
|
|
68
|
+
0
|
|
69
|
+
],
|
|
47
70
|
"navigationBarType": "homeIndicator",
|
|
48
|
-
"radius": 40
|
|
71
|
+
"radius": 40,
|
|
72
|
+
"multiplier": 0.96
|
|
49
73
|
},
|
|
50
74
|
{
|
|
51
75
|
"name": "iphone 14",
|
|
@@ -55,9 +79,15 @@
|
|
|
55
79
|
"aspect": "tall",
|
|
56
80
|
"type": "phone",
|
|
57
81
|
"importance": 15,
|
|
58
|
-
"insets": [
|
|
82
|
+
"insets": [
|
|
83
|
+
47,
|
|
84
|
+
0,
|
|
85
|
+
34,
|
|
86
|
+
0
|
|
87
|
+
],
|
|
59
88
|
"navigationBarType": "homeIndicator",
|
|
60
|
-
"radius": 40
|
|
89
|
+
"radius": 40,
|
|
90
|
+
"multiplier": 0.96
|
|
61
91
|
},
|
|
62
92
|
{
|
|
63
93
|
"name": "iphone 14 pro",
|
|
@@ -67,9 +97,15 @@
|
|
|
67
97
|
"aspect": "tall",
|
|
68
98
|
"type": "phone",
|
|
69
99
|
"importance": 15,
|
|
70
|
-
"insets": [
|
|
100
|
+
"insets": [
|
|
101
|
+
47,
|
|
102
|
+
0,
|
|
103
|
+
34,
|
|
104
|
+
0
|
|
105
|
+
],
|
|
71
106
|
"navigationBarType": "homeIndicator",
|
|
72
|
-
"radius": 40
|
|
107
|
+
"radius": 40,
|
|
108
|
+
"multiplier": 0.95
|
|
73
109
|
},
|
|
74
110
|
{
|
|
75
111
|
"name": "iphone 15",
|
|
@@ -79,9 +115,15 @@
|
|
|
79
115
|
"aspect": "tall",
|
|
80
116
|
"type": "phone",
|
|
81
117
|
"importance": 6,
|
|
82
|
-
"insets": [
|
|
118
|
+
"insets": [
|
|
119
|
+
47,
|
|
120
|
+
0,
|
|
121
|
+
34,
|
|
122
|
+
0
|
|
123
|
+
],
|
|
83
124
|
"navigationBarType": "homeIndicator",
|
|
84
|
-
"radius": 40
|
|
125
|
+
"radius": 40,
|
|
126
|
+
"multiplier": 0.95
|
|
85
127
|
},
|
|
86
128
|
{
|
|
87
129
|
"name": "iphone 15 pro",
|
|
@@ -91,9 +133,15 @@
|
|
|
91
133
|
"aspect": "tall",
|
|
92
134
|
"type": "phone",
|
|
93
135
|
"importance": 18,
|
|
94
|
-
"insets": [
|
|
136
|
+
"insets": [
|
|
137
|
+
47,
|
|
138
|
+
0,
|
|
139
|
+
34,
|
|
140
|
+
0
|
|
141
|
+
],
|
|
95
142
|
"navigationBarType": "homeIndicator",
|
|
96
|
-
"radius": 40
|
|
143
|
+
"radius": 40,
|
|
144
|
+
"multiplier": 0.95
|
|
97
145
|
},
|
|
98
146
|
{
|
|
99
147
|
"name": "pixel 3 xl",
|
|
@@ -103,9 +151,15 @@
|
|
|
103
151
|
"aspect": "tall",
|
|
104
152
|
"type": "phone",
|
|
105
153
|
"importance": 8,
|
|
106
|
-
"insets": [
|
|
154
|
+
"insets": [
|
|
155
|
+
24,
|
|
156
|
+
0,
|
|
157
|
+
24,
|
|
158
|
+
0
|
|
159
|
+
],
|
|
107
160
|
"navigationBarType": "gesture",
|
|
108
|
-
"radius": 20
|
|
161
|
+
"radius": 20,
|
|
162
|
+
"multiplier": 0.91
|
|
109
163
|
},
|
|
110
164
|
{
|
|
111
165
|
"name": "pixel 4 xl",
|
|
@@ -115,9 +169,15 @@
|
|
|
115
169
|
"aspect": "tall",
|
|
116
170
|
"type": "phone",
|
|
117
171
|
"importance": 14,
|
|
118
|
-
"insets": [
|
|
172
|
+
"insets": [
|
|
173
|
+
24,
|
|
174
|
+
0,
|
|
175
|
+
24,
|
|
176
|
+
0
|
|
177
|
+
],
|
|
119
178
|
"navigationBarType": "gesture",
|
|
120
|
-
"radius": 20
|
|
179
|
+
"radius": 20,
|
|
180
|
+
"multiplier": 0.91
|
|
121
181
|
},
|
|
122
182
|
{
|
|
123
183
|
"name": "pixel 6",
|
|
@@ -127,9 +187,15 @@
|
|
|
127
187
|
"aspect": "tall",
|
|
128
188
|
"type": "phone",
|
|
129
189
|
"importance": 10,
|
|
130
|
-
"insets": [
|
|
190
|
+
"insets": [
|
|
191
|
+
24,
|
|
192
|
+
0,
|
|
193
|
+
24,
|
|
194
|
+
0
|
|
195
|
+
],
|
|
131
196
|
"navigationBarType": "gesture",
|
|
132
|
-
"radius": 20
|
|
197
|
+
"radius": 20,
|
|
198
|
+
"multiplier": 0.91
|
|
133
199
|
},
|
|
134
200
|
{
|
|
135
201
|
"name": "pixel 6 pro",
|
|
@@ -139,9 +205,15 @@
|
|
|
139
205
|
"aspect": "tall",
|
|
140
206
|
"type": "phone",
|
|
141
207
|
"importance": 4,
|
|
142
|
-
"insets": [
|
|
208
|
+
"insets": [
|
|
209
|
+
24,
|
|
210
|
+
0,
|
|
211
|
+
24,
|
|
212
|
+
0
|
|
213
|
+
],
|
|
143
214
|
"navigationBarType": "gesture",
|
|
144
|
-
"radius": 20
|
|
215
|
+
"radius": 20,
|
|
216
|
+
"multiplier": 0.91
|
|
145
217
|
},
|
|
146
218
|
{
|
|
147
219
|
"name": "pixel 7",
|
|
@@ -151,9 +223,15 @@
|
|
|
151
223
|
"aspect": "tall",
|
|
152
224
|
"type": "phone",
|
|
153
225
|
"importance": 11,
|
|
154
|
-
"insets": [
|
|
226
|
+
"insets": [
|
|
227
|
+
24,
|
|
228
|
+
0,
|
|
229
|
+
24,
|
|
230
|
+
0
|
|
231
|
+
],
|
|
155
232
|
"navigationBarType": "gesture",
|
|
156
|
-
"radius": 20
|
|
233
|
+
"radius": 20,
|
|
234
|
+
"multiplier": 0.91
|
|
157
235
|
},
|
|
158
236
|
{
|
|
159
237
|
"name": "pixel 7 pro",
|
|
@@ -163,9 +241,15 @@
|
|
|
163
241
|
"aspect": "tall",
|
|
164
242
|
"type": "phone",
|
|
165
243
|
"importance": 5,
|
|
166
|
-
"insets": [
|
|
244
|
+
"insets": [
|
|
245
|
+
24,
|
|
246
|
+
0,
|
|
247
|
+
24,
|
|
248
|
+
0
|
|
249
|
+
],
|
|
167
250
|
"navigationBarType": "gesture",
|
|
168
|
-
"radius": 20
|
|
251
|
+
"radius": 20,
|
|
252
|
+
"multiplier": 0.91
|
|
169
253
|
},
|
|
170
254
|
{
|
|
171
255
|
"name": "pixel 8",
|
|
@@ -175,9 +259,15 @@
|
|
|
175
259
|
"aspect": "tall",
|
|
176
260
|
"type": "phone",
|
|
177
261
|
"importance": 12,
|
|
178
|
-
"insets": [
|
|
262
|
+
"insets": [
|
|
263
|
+
24,
|
|
264
|
+
0,
|
|
265
|
+
24,
|
|
266
|
+
0
|
|
267
|
+
],
|
|
179
268
|
"navigationBarType": "gesture",
|
|
180
|
-
"radius": 20
|
|
269
|
+
"radius": 20,
|
|
270
|
+
"multiplier": 0.91
|
|
181
271
|
},
|
|
182
272
|
{
|
|
183
273
|
"name": "pixel 8 pro",
|
|
@@ -187,9 +277,15 @@
|
|
|
187
277
|
"aspect": "tall",
|
|
188
278
|
"type": "phone",
|
|
189
279
|
"importance": 16,
|
|
190
|
-
"insets": [
|
|
280
|
+
"insets": [
|
|
281
|
+
24,
|
|
282
|
+
0,
|
|
283
|
+
24,
|
|
284
|
+
0
|
|
285
|
+
],
|
|
191
286
|
"navigationBarType": "gesture",
|
|
192
|
-
"radius": 20
|
|
287
|
+
"radius": 20,
|
|
288
|
+
"multiplier": 0.91
|
|
193
289
|
},
|
|
194
290
|
{
|
|
195
291
|
"name": "galaxy s8",
|
|
@@ -199,9 +295,15 @@
|
|
|
199
295
|
"aspect": "tall",
|
|
200
296
|
"type": "phone",
|
|
201
297
|
"importance": 5,
|
|
202
|
-
"insets": [
|
|
298
|
+
"insets": [
|
|
299
|
+
24,
|
|
300
|
+
0,
|
|
301
|
+
48,
|
|
302
|
+
0
|
|
303
|
+
],
|
|
203
304
|
"navigationBarType": "threeButtons",
|
|
204
|
-
"radius": 16
|
|
305
|
+
"radius": 16,
|
|
306
|
+
"multiplier": 1.04
|
|
205
307
|
},
|
|
206
308
|
{
|
|
207
309
|
"name": "galaxy s8+",
|
|
@@ -211,9 +313,15 @@
|
|
|
211
313
|
"aspect": "tall",
|
|
212
314
|
"type": "phone",
|
|
213
315
|
"importance": 1,
|
|
214
|
-
"insets": [
|
|
316
|
+
"insets": [
|
|
317
|
+
24,
|
|
318
|
+
0,
|
|
319
|
+
48,
|
|
320
|
+
0
|
|
321
|
+
],
|
|
215
322
|
"navigationBarType": "threeButtons",
|
|
216
|
-
"radius": 16
|
|
323
|
+
"radius": 16,
|
|
324
|
+
"multiplier": 1.04
|
|
217
325
|
},
|
|
218
326
|
{
|
|
219
327
|
"name": "galaxy s9",
|
|
@@ -223,9 +331,15 @@
|
|
|
223
331
|
"aspect": "tall",
|
|
224
332
|
"type": "phone",
|
|
225
333
|
"importance": 4,
|
|
226
|
-
"insets": [
|
|
334
|
+
"insets": [
|
|
335
|
+
24,
|
|
336
|
+
0,
|
|
337
|
+
48,
|
|
338
|
+
0
|
|
339
|
+
],
|
|
227
340
|
"navigationBarType": "threeButtons",
|
|
228
|
-
"radius": 16
|
|
341
|
+
"radius": 16,
|
|
342
|
+
"multiplier": 1.04
|
|
229
343
|
},
|
|
230
344
|
{
|
|
231
345
|
"name": "galaxy s9+",
|
|
@@ -235,9 +349,15 @@
|
|
|
235
349
|
"aspect": "tall",
|
|
236
350
|
"type": "phone",
|
|
237
351
|
"importance": 4,
|
|
238
|
-
"insets": [
|
|
352
|
+
"insets": [
|
|
353
|
+
24,
|
|
354
|
+
0,
|
|
355
|
+
48,
|
|
356
|
+
0
|
|
357
|
+
],
|
|
239
358
|
"navigationBarType": "threeButtons",
|
|
240
|
-
"radius": 16
|
|
359
|
+
"radius": 16,
|
|
360
|
+
"multiplier": 1.04
|
|
241
361
|
},
|
|
242
362
|
{
|
|
243
363
|
"name": "galaxy s10",
|
|
@@ -247,9 +367,15 @@
|
|
|
247
367
|
"aspect": "tall",
|
|
248
368
|
"type": "phone",
|
|
249
369
|
"importance": 19,
|
|
250
|
-
"insets": [
|
|
370
|
+
"insets": [
|
|
371
|
+
24,
|
|
372
|
+
0,
|
|
373
|
+
24,
|
|
374
|
+
0
|
|
375
|
+
],
|
|
251
376
|
"navigationBarType": "gesture",
|
|
252
|
-
"radius": 20
|
|
377
|
+
"radius": 20,
|
|
378
|
+
"multiplier": 1.04
|
|
253
379
|
},
|
|
254
380
|
{
|
|
255
381
|
"name": "galaxy s10+",
|
|
@@ -259,9 +385,15 @@
|
|
|
259
385
|
"aspect": "tall",
|
|
260
386
|
"type": "phone",
|
|
261
387
|
"importance": 15,
|
|
262
|
-
"insets": [
|
|
388
|
+
"insets": [
|
|
389
|
+
24,
|
|
390
|
+
0,
|
|
391
|
+
24,
|
|
392
|
+
0
|
|
393
|
+
],
|
|
263
394
|
"navigationBarType": "gesture",
|
|
264
|
-
"radius": 20
|
|
395
|
+
"radius": 20,
|
|
396
|
+
"multiplier": 0.91
|
|
265
397
|
},
|
|
266
398
|
{
|
|
267
399
|
"name": "galaxy s20",
|
|
@@ -271,9 +403,15 @@
|
|
|
271
403
|
"aspect": "tall",
|
|
272
404
|
"type": "phone",
|
|
273
405
|
"importance": 13,
|
|
274
|
-
"insets": [
|
|
406
|
+
"insets": [
|
|
407
|
+
24,
|
|
408
|
+
0,
|
|
409
|
+
24,
|
|
410
|
+
0
|
|
411
|
+
],
|
|
275
412
|
"navigationBarType": "gesture",
|
|
276
|
-
"radius": 20
|
|
413
|
+
"radius": 20,
|
|
414
|
+
"multiplier": 1.04
|
|
277
415
|
},
|
|
278
416
|
{
|
|
279
417
|
"name": "galaxy s20+",
|
|
@@ -283,9 +421,15 @@
|
|
|
283
421
|
"aspect": "tall",
|
|
284
422
|
"type": "phone",
|
|
285
423
|
"importance": 16,
|
|
286
|
-
"insets": [
|
|
424
|
+
"insets": [
|
|
425
|
+
24,
|
|
426
|
+
0,
|
|
427
|
+
24,
|
|
428
|
+
0
|
|
429
|
+
],
|
|
287
430
|
"navigationBarType": "gesture",
|
|
288
|
-
"radius": 20
|
|
431
|
+
"radius": 20,
|
|
432
|
+
"multiplier": 0.91
|
|
289
433
|
},
|
|
290
434
|
{
|
|
291
435
|
"name": "galaxy s20 ultra",
|
|
@@ -295,9 +439,15 @@
|
|
|
295
439
|
"aspect": "tall",
|
|
296
440
|
"type": "phone",
|
|
297
441
|
"importance": 2,
|
|
298
|
-
"insets": [
|
|
442
|
+
"insets": [
|
|
443
|
+
24,
|
|
444
|
+
0,
|
|
445
|
+
24,
|
|
446
|
+
0
|
|
447
|
+
],
|
|
299
448
|
"navigationBarType": "gesture",
|
|
300
|
-
"radius": 20
|
|
449
|
+
"radius": 20,
|
|
450
|
+
"multiplier": 0.91
|
|
301
451
|
},
|
|
302
452
|
{
|
|
303
453
|
"name": "galaxy s21",
|
|
@@ -307,9 +457,15 @@
|
|
|
307
457
|
"aspect": "tall",
|
|
308
458
|
"type": "phone",
|
|
309
459
|
"importance": 13,
|
|
310
|
-
"insets": [
|
|
460
|
+
"insets": [
|
|
461
|
+
24,
|
|
462
|
+
0,
|
|
463
|
+
24,
|
|
464
|
+
0
|
|
465
|
+
],
|
|
311
466
|
"navigationBarType": "gesture",
|
|
312
|
-
"radius": 20
|
|
467
|
+
"radius": 20,
|
|
468
|
+
"multiplier": 1.04
|
|
313
469
|
},
|
|
314
470
|
{
|
|
315
471
|
"name": "galaxy s21+",
|
|
@@ -319,9 +475,15 @@
|
|
|
319
475
|
"aspect": "tall",
|
|
320
476
|
"type": "phone",
|
|
321
477
|
"importance": 12,
|
|
322
|
-
"insets": [
|
|
478
|
+
"insets": [
|
|
479
|
+
24,
|
|
480
|
+
0,
|
|
481
|
+
24,
|
|
482
|
+
0
|
|
483
|
+
],
|
|
323
484
|
"navigationBarType": "gesture",
|
|
324
|
-
"radius": 20
|
|
485
|
+
"radius": 20,
|
|
486
|
+
"multiplier": 0.91
|
|
325
487
|
},
|
|
326
488
|
{
|
|
327
489
|
"name": "galaxy s21 ultra",
|
|
@@ -331,9 +493,15 @@
|
|
|
331
493
|
"aspect": "tall",
|
|
332
494
|
"type": "phone",
|
|
333
495
|
"importance": 2,
|
|
334
|
-
"insets": [
|
|
496
|
+
"insets": [
|
|
497
|
+
24,
|
|
498
|
+
0,
|
|
499
|
+
24,
|
|
500
|
+
0
|
|
501
|
+
],
|
|
335
502
|
"navigationBarType": "gesture",
|
|
336
|
-
"radius": 20
|
|
503
|
+
"radius": 20,
|
|
504
|
+
"multiplier": 0.91
|
|
337
505
|
},
|
|
338
506
|
{
|
|
339
507
|
"name": "galaxy s22",
|
|
@@ -343,9 +511,15 @@
|
|
|
343
511
|
"aspect": "tall",
|
|
344
512
|
"type": "phone",
|
|
345
513
|
"importance": 2,
|
|
346
|
-
"insets": [
|
|
514
|
+
"insets": [
|
|
515
|
+
24,
|
|
516
|
+
0,
|
|
517
|
+
24,
|
|
518
|
+
0
|
|
519
|
+
],
|
|
347
520
|
"navigationBarType": "gesture",
|
|
348
|
-
"radius": 20
|
|
521
|
+
"radius": 20,
|
|
522
|
+
"multiplier": 1.04
|
|
349
523
|
},
|
|
350
524
|
{
|
|
351
525
|
"name": "galaxy s22+",
|
|
@@ -355,9 +529,15 @@
|
|
|
355
529
|
"aspect": "tall",
|
|
356
530
|
"type": "phone",
|
|
357
531
|
"importance": 8,
|
|
358
|
-
"insets": [
|
|
532
|
+
"insets": [
|
|
533
|
+
24,
|
|
534
|
+
0,
|
|
535
|
+
24,
|
|
536
|
+
0
|
|
537
|
+
],
|
|
359
538
|
"navigationBarType": "gesture",
|
|
360
|
-
"radius": 20
|
|
539
|
+
"radius": 20,
|
|
540
|
+
"multiplier": 0.91
|
|
361
541
|
},
|
|
362
542
|
{
|
|
363
543
|
"name": "galaxy s22 ultra",
|
|
@@ -367,9 +547,15 @@
|
|
|
367
547
|
"aspect": "tall",
|
|
368
548
|
"type": "phone",
|
|
369
549
|
"importance": 19,
|
|
370
|
-
"insets": [
|
|
550
|
+
"insets": [
|
|
551
|
+
24,
|
|
552
|
+
0,
|
|
553
|
+
24,
|
|
554
|
+
0
|
|
555
|
+
],
|
|
371
556
|
"navigationBarType": "gesture",
|
|
372
|
-
"radius": 20
|
|
557
|
+
"radius": 20,
|
|
558
|
+
"multiplier": 0.91
|
|
373
559
|
},
|
|
374
560
|
{
|
|
375
561
|
"name": "galaxy s23",
|
|
@@ -379,9 +565,15 @@
|
|
|
379
565
|
"aspect": "tall",
|
|
380
566
|
"type": "phone",
|
|
381
567
|
"importance": 19,
|
|
382
|
-
"insets": [
|
|
568
|
+
"insets": [
|
|
569
|
+
24,
|
|
570
|
+
0,
|
|
571
|
+
24,
|
|
572
|
+
0
|
|
573
|
+
],
|
|
383
574
|
"navigationBarType": "gesture",
|
|
384
|
-
"radius": 20
|
|
575
|
+
"radius": 20,
|
|
576
|
+
"multiplier": 1.04
|
|
385
577
|
},
|
|
386
578
|
{
|
|
387
579
|
"name": "galaxy s23+",
|
|
@@ -391,9 +583,15 @@
|
|
|
391
583
|
"aspect": "tall",
|
|
392
584
|
"type": "phone",
|
|
393
585
|
"importance": 1,
|
|
394
|
-
"insets": [
|
|
586
|
+
"insets": [
|
|
587
|
+
24,
|
|
588
|
+
0,
|
|
589
|
+
24,
|
|
590
|
+
0
|
|
591
|
+
],
|
|
395
592
|
"navigationBarType": "gesture",
|
|
396
|
-
"radius": 20
|
|
593
|
+
"radius": 20,
|
|
594
|
+
"multiplier": 0.91
|
|
397
595
|
},
|
|
398
596
|
{
|
|
399
597
|
"name": "galaxy s23 ultra",
|
|
@@ -403,9 +601,15 @@
|
|
|
403
601
|
"aspect": "tall",
|
|
404
602
|
"type": "phone",
|
|
405
603
|
"importance": 19,
|
|
406
|
-
"insets": [
|
|
604
|
+
"insets": [
|
|
605
|
+
24,
|
|
606
|
+
0,
|
|
607
|
+
24,
|
|
608
|
+
0
|
|
609
|
+
],
|
|
407
610
|
"navigationBarType": "gesture",
|
|
408
|
-
"radius": 20
|
|
611
|
+
"radius": 20,
|
|
612
|
+
"multiplier": 0.91
|
|
409
613
|
},
|
|
410
614
|
{
|
|
411
615
|
"name": "oneplus 8",
|
|
@@ -415,9 +619,15 @@
|
|
|
415
619
|
"aspect": "tall",
|
|
416
620
|
"type": "phone",
|
|
417
621
|
"importance": 4,
|
|
418
|
-
"insets": [
|
|
622
|
+
"insets": [
|
|
623
|
+
24,
|
|
624
|
+
0,
|
|
625
|
+
24,
|
|
626
|
+
0
|
|
627
|
+
],
|
|
419
628
|
"navigationBarType": "gesture",
|
|
420
|
-
"radius": 20
|
|
629
|
+
"radius": 20,
|
|
630
|
+
"multiplier": 0.91
|
|
421
631
|
},
|
|
422
632
|
{
|
|
423
633
|
"name": "oneplus 8 pro",
|
|
@@ -427,9 +637,15 @@
|
|
|
427
637
|
"aspect": "tall",
|
|
428
638
|
"type": "phone",
|
|
429
639
|
"importance": 20,
|
|
430
|
-
"insets": [
|
|
640
|
+
"insets": [
|
|
641
|
+
24,
|
|
642
|
+
0,
|
|
643
|
+
24,
|
|
644
|
+
0
|
|
645
|
+
],
|
|
431
646
|
"navigationBarType": "gesture",
|
|
432
|
-
"radius": 20
|
|
647
|
+
"radius": 20,
|
|
648
|
+
"multiplier": 0.91
|
|
433
649
|
},
|
|
434
650
|
{
|
|
435
651
|
"name": "oneplus 9",
|
|
@@ -439,9 +655,15 @@
|
|
|
439
655
|
"aspect": "tall",
|
|
440
656
|
"type": "phone",
|
|
441
657
|
"importance": 3,
|
|
442
|
-
"insets": [
|
|
658
|
+
"insets": [
|
|
659
|
+
24,
|
|
660
|
+
0,
|
|
661
|
+
24,
|
|
662
|
+
0
|
|
663
|
+
],
|
|
443
664
|
"navigationBarType": "gesture",
|
|
444
|
-
"radius": 20
|
|
665
|
+
"radius": 20,
|
|
666
|
+
"multiplier": 0.91
|
|
445
667
|
},
|
|
446
668
|
{
|
|
447
669
|
"name": "oneplus 9 pro",
|
|
@@ -451,9 +673,15 @@
|
|
|
451
673
|
"aspect": "tall",
|
|
452
674
|
"type": "phone",
|
|
453
675
|
"importance": 1,
|
|
454
|
-
"insets": [
|
|
676
|
+
"insets": [
|
|
677
|
+
24,
|
|
678
|
+
0,
|
|
679
|
+
24,
|
|
680
|
+
0
|
|
681
|
+
],
|
|
455
682
|
"navigationBarType": "gesture",
|
|
456
|
-
"radius": 20
|
|
683
|
+
"radius": 20,
|
|
684
|
+
"multiplier": 0.91
|
|
457
685
|
},
|
|
458
686
|
{
|
|
459
687
|
"name": "xiaomi mi 11",
|
|
@@ -463,9 +691,15 @@
|
|
|
463
691
|
"aspect": "tall",
|
|
464
692
|
"type": "phone",
|
|
465
693
|
"importance": 9,
|
|
466
|
-
"insets": [
|
|
694
|
+
"insets": [
|
|
695
|
+
24,
|
|
696
|
+
0,
|
|
697
|
+
24,
|
|
698
|
+
0
|
|
699
|
+
],
|
|
467
700
|
"navigationBarType": "gesture",
|
|
468
|
-
"radius": 20
|
|
701
|
+
"radius": 20,
|
|
702
|
+
"multiplier": 0.91
|
|
469
703
|
},
|
|
470
704
|
{
|
|
471
705
|
"name": "huawei p30",
|
|
@@ -475,9 +709,15 @@
|
|
|
475
709
|
"aspect": "tall",
|
|
476
710
|
"type": "phone",
|
|
477
711
|
"importance": 10,
|
|
478
|
-
"insets": [
|
|
712
|
+
"insets": [
|
|
713
|
+
24,
|
|
714
|
+
0,
|
|
715
|
+
48,
|
|
716
|
+
0
|
|
717
|
+
],
|
|
479
718
|
"navigationBarType": "threeButtons",
|
|
480
|
-
"radius": 16
|
|
719
|
+
"radius": 16,
|
|
720
|
+
"multiplier": 1.04
|
|
481
721
|
},
|
|
482
722
|
{
|
|
483
723
|
"name": "huawei p30 pro",
|
|
@@ -487,9 +727,15 @@
|
|
|
487
727
|
"aspect": "tall",
|
|
488
728
|
"type": "phone",
|
|
489
729
|
"importance": 14,
|
|
490
|
-
"insets": [
|
|
730
|
+
"insets": [
|
|
731
|
+
24,
|
|
732
|
+
0,
|
|
733
|
+
48,
|
|
734
|
+
0
|
|
735
|
+
],
|
|
491
736
|
"navigationBarType": "threeButtons",
|
|
492
|
-
"radius": 16
|
|
737
|
+
"radius": 16,
|
|
738
|
+
"multiplier": 1.04
|
|
493
739
|
},
|
|
494
740
|
{
|
|
495
741
|
"name": "oppo find x3 pro",
|
|
@@ -499,9 +745,15 @@
|
|
|
499
745
|
"aspect": "tall",
|
|
500
746
|
"type": "phone",
|
|
501
747
|
"importance": 7,
|
|
502
|
-
"insets": [
|
|
748
|
+
"insets": [
|
|
749
|
+
24,
|
|
750
|
+
0,
|
|
751
|
+
24,
|
|
752
|
+
0
|
|
753
|
+
],
|
|
503
754
|
"navigationBarType": "gesture",
|
|
504
|
-
"radius": 20
|
|
755
|
+
"radius": 20,
|
|
756
|
+
"multiplier": 0.91
|
|
505
757
|
},
|
|
506
758
|
{
|
|
507
759
|
"name": "iphone 6 plus",
|
|
@@ -511,9 +763,15 @@
|
|
|
511
763
|
"aspect": "regular",
|
|
512
764
|
"type": "phone",
|
|
513
765
|
"importance": 27,
|
|
514
|
-
"insets": [
|
|
766
|
+
"insets": [
|
|
767
|
+
20,
|
|
768
|
+
0,
|
|
769
|
+
0,
|
|
770
|
+
0
|
|
771
|
+
],
|
|
515
772
|
"navigationBarType": "none",
|
|
516
|
-
"radius": 0
|
|
773
|
+
"radius": 0,
|
|
774
|
+
"multiplier": 0.91
|
|
517
775
|
},
|
|
518
776
|
{
|
|
519
777
|
"name": "iphone 6s plus",
|
|
@@ -523,9 +781,15 @@
|
|
|
523
781
|
"aspect": "regular",
|
|
524
782
|
"type": "phone",
|
|
525
783
|
"importance": 35,
|
|
526
|
-
"insets": [
|
|
784
|
+
"insets": [
|
|
785
|
+
20,
|
|
786
|
+
0,
|
|
787
|
+
0,
|
|
788
|
+
0
|
|
789
|
+
],
|
|
527
790
|
"navigationBarType": "none",
|
|
528
|
-
"radius": 0
|
|
791
|
+
"radius": 0,
|
|
792
|
+
"multiplier": 0.91
|
|
529
793
|
},
|
|
530
794
|
{
|
|
531
795
|
"name": "iphone 7 plus",
|
|
@@ -535,9 +799,15 @@
|
|
|
535
799
|
"aspect": "regular",
|
|
536
800
|
"type": "phone",
|
|
537
801
|
"importance": 40,
|
|
538
|
-
"insets": [
|
|
802
|
+
"insets": [
|
|
803
|
+
20,
|
|
804
|
+
0,
|
|
805
|
+
0,
|
|
806
|
+
0
|
|
807
|
+
],
|
|
539
808
|
"navigationBarType": "none",
|
|
540
|
-
"radius": 0
|
|
809
|
+
"radius": 0,
|
|
810
|
+
"multiplier": 0.91
|
|
541
811
|
},
|
|
542
812
|
{
|
|
543
813
|
"name": "iphone 8 plus",
|
|
@@ -547,9 +817,15 @@
|
|
|
547
817
|
"aspect": "regular",
|
|
548
818
|
"type": "phone",
|
|
549
819
|
"importance": 32,
|
|
550
|
-
"insets": [
|
|
820
|
+
"insets": [
|
|
821
|
+
20,
|
|
822
|
+
0,
|
|
823
|
+
0,
|
|
824
|
+
0
|
|
825
|
+
],
|
|
551
826
|
"navigationBarType": "none",
|
|
552
|
-
"radius": 0
|
|
827
|
+
"radius": 0,
|
|
828
|
+
"multiplier": 0.91
|
|
553
829
|
},
|
|
554
830
|
{
|
|
555
831
|
"name": "iphone xs max",
|
|
@@ -559,9 +835,15 @@
|
|
|
559
835
|
"aspect": "tall",
|
|
560
836
|
"type": "phone",
|
|
561
837
|
"importance": 21,
|
|
562
|
-
"insets": [
|
|
838
|
+
"insets": [
|
|
839
|
+
47,
|
|
840
|
+
0,
|
|
841
|
+
34,
|
|
842
|
+
0
|
|
843
|
+
],
|
|
563
844
|
"navigationBarType": "homeIndicator",
|
|
564
|
-
"radius": 40
|
|
845
|
+
"radius": 40,
|
|
846
|
+
"multiplier": 0.7
|
|
565
847
|
},
|
|
566
848
|
{
|
|
567
849
|
"name": "iphone xr",
|
|
@@ -571,9 +853,15 @@
|
|
|
571
853
|
"aspect": "tall",
|
|
572
854
|
"type": "phone",
|
|
573
855
|
"importance": 31,
|
|
574
|
-
"insets": [
|
|
856
|
+
"insets": [
|
|
857
|
+
47,
|
|
858
|
+
0,
|
|
859
|
+
34,
|
|
860
|
+
0
|
|
861
|
+
],
|
|
575
862
|
"navigationBarType": "homeIndicator",
|
|
576
|
-
"radius": 40
|
|
863
|
+
"radius": 40,
|
|
864
|
+
"multiplier": 0.91
|
|
577
865
|
},
|
|
578
866
|
{
|
|
579
867
|
"name": "iphone 11",
|
|
@@ -583,9 +871,15 @@
|
|
|
583
871
|
"aspect": "tall",
|
|
584
872
|
"type": "phone",
|
|
585
873
|
"importance": 36,
|
|
586
|
-
"insets": [
|
|
874
|
+
"insets": [
|
|
875
|
+
47,
|
|
876
|
+
0,
|
|
877
|
+
34,
|
|
878
|
+
0
|
|
879
|
+
],
|
|
587
880
|
"navigationBarType": "homeIndicator",
|
|
588
|
-
"radius": 40
|
|
881
|
+
"radius": 40,
|
|
882
|
+
"multiplier": 0.91
|
|
589
883
|
},
|
|
590
884
|
{
|
|
591
885
|
"name": "iphone 11 pro max",
|
|
@@ -595,9 +889,15 @@
|
|
|
595
889
|
"aspect": "tall",
|
|
596
890
|
"type": "phone",
|
|
597
891
|
"importance": 22,
|
|
598
|
-
"insets": [
|
|
892
|
+
"insets": [
|
|
893
|
+
47,
|
|
894
|
+
0,
|
|
895
|
+
34,
|
|
896
|
+
0
|
|
897
|
+
],
|
|
599
898
|
"navigationBarType": "homeIndicator",
|
|
600
|
-
"radius": 40
|
|
899
|
+
"radius": 40,
|
|
900
|
+
"multiplier": 0.91
|
|
601
901
|
},
|
|
602
902
|
{
|
|
603
903
|
"name": "iphone 12 pro max",
|
|
@@ -607,9 +907,15 @@
|
|
|
607
907
|
"aspect": "tall",
|
|
608
908
|
"type": "phone",
|
|
609
909
|
"importance": 28,
|
|
610
|
-
"insets": [
|
|
910
|
+
"insets": [
|
|
911
|
+
47,
|
|
912
|
+
0,
|
|
913
|
+
34,
|
|
914
|
+
0
|
|
915
|
+
],
|
|
611
916
|
"navigationBarType": "homeIndicator",
|
|
612
|
-
"radius": 40
|
|
917
|
+
"radius": 40,
|
|
918
|
+
"multiplier": 0.88
|
|
613
919
|
},
|
|
614
920
|
{
|
|
615
921
|
"name": "iphone 13 pro max",
|
|
@@ -619,9 +925,15 @@
|
|
|
619
925
|
"aspect": "tall",
|
|
620
926
|
"type": "phone",
|
|
621
927
|
"importance": 30,
|
|
622
|
-
"insets": [
|
|
928
|
+
"insets": [
|
|
929
|
+
47,
|
|
930
|
+
0,
|
|
931
|
+
34,
|
|
932
|
+
0
|
|
933
|
+
],
|
|
623
934
|
"navigationBarType": "homeIndicator",
|
|
624
|
-
"radius": 40
|
|
935
|
+
"radius": 40,
|
|
936
|
+
"multiplier": 0.88
|
|
625
937
|
},
|
|
626
938
|
{
|
|
627
939
|
"name": "iphone 14 plus",
|
|
@@ -631,9 +943,15 @@
|
|
|
631
943
|
"aspect": "tall",
|
|
632
944
|
"type": "phone",
|
|
633
945
|
"importance": 29,
|
|
634
|
-
"insets": [
|
|
946
|
+
"insets": [
|
|
947
|
+
47,
|
|
948
|
+
0,
|
|
949
|
+
34,
|
|
950
|
+
0
|
|
951
|
+
],
|
|
635
952
|
"navigationBarType": "homeIndicator",
|
|
636
|
-
"radius": 40
|
|
953
|
+
"radius": 40,
|
|
954
|
+
"multiplier": 0.88
|
|
637
955
|
},
|
|
638
956
|
{
|
|
639
957
|
"name": "iphone 14 pro max",
|
|
@@ -643,9 +961,15 @@
|
|
|
643
961
|
"aspect": "tall",
|
|
644
962
|
"type": "phone",
|
|
645
963
|
"importance": 39,
|
|
646
|
-
"insets": [
|
|
964
|
+
"insets": [
|
|
965
|
+
47,
|
|
966
|
+
0,
|
|
967
|
+
34,
|
|
968
|
+
0
|
|
969
|
+
],
|
|
647
970
|
"navigationBarType": "homeIndicator",
|
|
648
|
-
"radius": 40
|
|
971
|
+
"radius": 40,
|
|
972
|
+
"multiplier": 0.87
|
|
649
973
|
},
|
|
650
974
|
{
|
|
651
975
|
"name": "iphone 15 plus",
|
|
@@ -655,9 +979,15 @@
|
|
|
655
979
|
"aspect": "tall",
|
|
656
980
|
"type": "phone",
|
|
657
981
|
"importance": 24,
|
|
658
|
-
"insets": [
|
|
982
|
+
"insets": [
|
|
983
|
+
47,
|
|
984
|
+
0,
|
|
985
|
+
34,
|
|
986
|
+
0
|
|
987
|
+
],
|
|
659
988
|
"navigationBarType": "homeIndicator",
|
|
660
|
-
"radius": 40
|
|
989
|
+
"radius": 40,
|
|
990
|
+
"multiplier": 0.87
|
|
661
991
|
},
|
|
662
992
|
{
|
|
663
993
|
"name": "iphone 15 pro max",
|
|
@@ -667,9 +997,15 @@
|
|
|
667
997
|
"aspect": "tall",
|
|
668
998
|
"type": "phone",
|
|
669
999
|
"importance": 22,
|
|
670
|
-
"insets": [
|
|
1000
|
+
"insets": [
|
|
1001
|
+
47,
|
|
1002
|
+
0,
|
|
1003
|
+
34,
|
|
1004
|
+
0
|
|
1005
|
+
],
|
|
671
1006
|
"navigationBarType": "homeIndicator",
|
|
672
|
-
"radius": 40
|
|
1007
|
+
"radius": 40,
|
|
1008
|
+
"multiplier": 0.87
|
|
673
1009
|
},
|
|
674
1010
|
{
|
|
675
1011
|
"name": "pixel 2",
|
|
@@ -679,9 +1015,15 @@
|
|
|
679
1015
|
"aspect": "regular",
|
|
680
1016
|
"type": "phone",
|
|
681
1017
|
"importance": 29,
|
|
682
|
-
"insets": [
|
|
1018
|
+
"insets": [
|
|
1019
|
+
24,
|
|
1020
|
+
0,
|
|
1021
|
+
48,
|
|
1022
|
+
0
|
|
1023
|
+
],
|
|
683
1024
|
"navigationBarType": "threeButtons",
|
|
684
|
-
"radius": 16
|
|
1025
|
+
"radius": 16,
|
|
1026
|
+
"multiplier": 0.91
|
|
685
1027
|
},
|
|
686
1028
|
{
|
|
687
1029
|
"name": "pixel 2 xl",
|
|
@@ -691,9 +1033,15 @@
|
|
|
691
1033
|
"aspect": "regular",
|
|
692
1034
|
"type": "phone",
|
|
693
1035
|
"importance": 36,
|
|
694
|
-
"insets": [
|
|
1036
|
+
"insets": [
|
|
1037
|
+
24,
|
|
1038
|
+
0,
|
|
1039
|
+
48,
|
|
1040
|
+
0
|
|
1041
|
+
],
|
|
695
1042
|
"navigationBarType": "threeButtons",
|
|
696
|
-
"radius": 16
|
|
1043
|
+
"radius": 16,
|
|
1044
|
+
"multiplier": 0.91
|
|
697
1045
|
},
|
|
698
1046
|
{
|
|
699
1047
|
"name": "pixel 3",
|
|
@@ -703,9 +1051,15 @@
|
|
|
703
1051
|
"aspect": "regular",
|
|
704
1052
|
"type": "phone",
|
|
705
1053
|
"importance": 39,
|
|
706
|
-
"insets": [
|
|
1054
|
+
"insets": [
|
|
1055
|
+
24,
|
|
1056
|
+
0,
|
|
1057
|
+
24,
|
|
1058
|
+
0
|
|
1059
|
+
],
|
|
707
1060
|
"navigationBarType": "gesture",
|
|
708
|
-
"radius": 20
|
|
1061
|
+
"radius": 20,
|
|
1062
|
+
"multiplier": 0.95
|
|
709
1063
|
},
|
|
710
1064
|
{
|
|
711
1065
|
"name": "pixel 4",
|
|
@@ -715,9 +1069,15 @@
|
|
|
715
1069
|
"aspect": "tall",
|
|
716
1070
|
"type": "phone",
|
|
717
1071
|
"importance": 24,
|
|
718
|
-
"insets": [
|
|
1072
|
+
"insets": [
|
|
1073
|
+
24,
|
|
1074
|
+
0,
|
|
1075
|
+
24,
|
|
1076
|
+
0
|
|
1077
|
+
],
|
|
719
1078
|
"navigationBarType": "gesture",
|
|
720
|
-
"radius": 20
|
|
1079
|
+
"radius": 20,
|
|
1080
|
+
"multiplier": 0.91
|
|
721
1081
|
},
|
|
722
1082
|
{
|
|
723
1083
|
"name": "pixel 5",
|
|
@@ -727,9 +1087,15 @@
|
|
|
727
1087
|
"aspect": "tall",
|
|
728
1088
|
"type": "phone",
|
|
729
1089
|
"importance": 23,
|
|
730
|
-
"insets": [
|
|
1090
|
+
"insets": [
|
|
1091
|
+
24,
|
|
1092
|
+
0,
|
|
1093
|
+
24,
|
|
1094
|
+
0
|
|
1095
|
+
],
|
|
731
1096
|
"navigationBarType": "gesture",
|
|
732
|
-
"radius": 20
|
|
1097
|
+
"radius": 20,
|
|
1098
|
+
"multiplier": 0.95
|
|
733
1099
|
},
|
|
734
1100
|
{
|
|
735
1101
|
"name": "xiaomi mi 9",
|
|
@@ -739,9 +1105,15 @@
|
|
|
739
1105
|
"aspect": "tall",
|
|
740
1106
|
"type": "phone",
|
|
741
1107
|
"importance": 39,
|
|
742
|
-
"insets": [
|
|
1108
|
+
"insets": [
|
|
1109
|
+
24,
|
|
1110
|
+
0,
|
|
1111
|
+
24,
|
|
1112
|
+
0
|
|
1113
|
+
],
|
|
743
1114
|
"navigationBarType": "gesture",
|
|
744
|
-
"radius": 20
|
|
1115
|
+
"radius": 20,
|
|
1116
|
+
"multiplier": 0.95
|
|
745
1117
|
},
|
|
746
1118
|
{
|
|
747
1119
|
"name": "iphone 6",
|
|
@@ -751,9 +1123,15 @@
|
|
|
751
1123
|
"aspect": "regular",
|
|
752
1124
|
"type": "phone",
|
|
753
1125
|
"importance": 42,
|
|
754
|
-
"insets": [
|
|
1126
|
+
"insets": [
|
|
1127
|
+
20,
|
|
1128
|
+
0,
|
|
1129
|
+
0,
|
|
1130
|
+
0
|
|
1131
|
+
],
|
|
755
1132
|
"navigationBarType": "none",
|
|
756
|
-
"radius": 0
|
|
1133
|
+
"radius": 0,
|
|
1134
|
+
"multiplier": 1
|
|
757
1135
|
},
|
|
758
1136
|
{
|
|
759
1137
|
"name": "iphone 6s",
|
|
@@ -763,9 +1141,15 @@
|
|
|
763
1141
|
"aspect": "regular",
|
|
764
1142
|
"type": "phone",
|
|
765
1143
|
"importance": 60,
|
|
766
|
-
"insets": [
|
|
1144
|
+
"insets": [
|
|
1145
|
+
20,
|
|
1146
|
+
0,
|
|
1147
|
+
0,
|
|
1148
|
+
0
|
|
1149
|
+
],
|
|
767
1150
|
"navigationBarType": "none",
|
|
768
|
-
"radius": 0
|
|
1151
|
+
"radius": 0,
|
|
1152
|
+
"multiplier": 1
|
|
769
1153
|
},
|
|
770
1154
|
{
|
|
771
1155
|
"name": "iphone 7",
|
|
@@ -775,9 +1159,15 @@
|
|
|
775
1159
|
"aspect": "regular",
|
|
776
1160
|
"type": "phone",
|
|
777
1161
|
"importance": 41,
|
|
778
|
-
"insets": [
|
|
1162
|
+
"insets": [
|
|
1163
|
+
20,
|
|
1164
|
+
0,
|
|
1165
|
+
0,
|
|
1166
|
+
0
|
|
1167
|
+
],
|
|
779
1168
|
"navigationBarType": "none",
|
|
780
|
-
"radius": 0
|
|
1169
|
+
"radius": 0,
|
|
1170
|
+
"multiplier": 1
|
|
781
1171
|
},
|
|
782
1172
|
{
|
|
783
1173
|
"name": "iphone 8",
|
|
@@ -787,9 +1177,15 @@
|
|
|
787
1177
|
"aspect": "regular",
|
|
788
1178
|
"type": "phone",
|
|
789
1179
|
"importance": 59,
|
|
790
|
-
"insets": [
|
|
1180
|
+
"insets": [
|
|
1181
|
+
20,
|
|
1182
|
+
0,
|
|
1183
|
+
0,
|
|
1184
|
+
0
|
|
1185
|
+
],
|
|
791
1186
|
"navigationBarType": "none",
|
|
792
|
-
"radius": 0
|
|
1187
|
+
"radius": 0,
|
|
1188
|
+
"multiplier": 1
|
|
793
1189
|
},
|
|
794
1190
|
{
|
|
795
1191
|
"name": "iphone x",
|
|
@@ -799,9 +1195,15 @@
|
|
|
799
1195
|
"aspect": "tall",
|
|
800
1196
|
"type": "phone",
|
|
801
1197
|
"importance": 46,
|
|
802
|
-
"insets": [
|
|
1198
|
+
"insets": [
|
|
1199
|
+
47,
|
|
1200
|
+
0,
|
|
1201
|
+
34,
|
|
1202
|
+
0
|
|
1203
|
+
],
|
|
803
1204
|
"navigationBarType": "homeIndicator",
|
|
804
|
-
"radius": 40
|
|
1205
|
+
"radius": 40,
|
|
1206
|
+
"multiplier": 1
|
|
805
1207
|
},
|
|
806
1208
|
{
|
|
807
1209
|
"name": "iphone xs",
|
|
@@ -811,9 +1213,15 @@
|
|
|
811
1213
|
"aspect": "tall",
|
|
812
1214
|
"type": "phone",
|
|
813
1215
|
"importance": 56,
|
|
814
|
-
"insets": [
|
|
1216
|
+
"insets": [
|
|
1217
|
+
47,
|
|
1218
|
+
0,
|
|
1219
|
+
34,
|
|
1220
|
+
0
|
|
1221
|
+
],
|
|
815
1222
|
"navigationBarType": "homeIndicator",
|
|
816
|
-
"radius": 40
|
|
1223
|
+
"radius": 40,
|
|
1224
|
+
"multiplier": 1
|
|
817
1225
|
},
|
|
818
1226
|
{
|
|
819
1227
|
"name": "iphone 11 pro",
|
|
@@ -823,9 +1231,15 @@
|
|
|
823
1231
|
"aspect": "tall",
|
|
824
1232
|
"type": "phone",
|
|
825
1233
|
"importance": 57,
|
|
826
|
-
"insets": [
|
|
1234
|
+
"insets": [
|
|
1235
|
+
47,
|
|
1236
|
+
0,
|
|
1237
|
+
34,
|
|
1238
|
+
0
|
|
1239
|
+
],
|
|
827
1240
|
"navigationBarType": "homeIndicator",
|
|
828
|
-
"radius": 40
|
|
1241
|
+
"radius": 40,
|
|
1242
|
+
"multiplier": 1
|
|
829
1243
|
},
|
|
830
1244
|
{
|
|
831
1245
|
"name": "iphone se (2nd gen)",
|
|
@@ -835,9 +1249,15 @@
|
|
|
835
1249
|
"aspect": "regular",
|
|
836
1250
|
"type": "phone",
|
|
837
1251
|
"importance": 56,
|
|
838
|
-
"insets": [
|
|
1252
|
+
"insets": [
|
|
1253
|
+
20,
|
|
1254
|
+
0,
|
|
1255
|
+
0,
|
|
1256
|
+
0
|
|
1257
|
+
],
|
|
839
1258
|
"navigationBarType": "none",
|
|
840
|
-
"radius": 0
|
|
1259
|
+
"radius": 0,
|
|
1260
|
+
"multiplier": 1
|
|
841
1261
|
},
|
|
842
1262
|
{
|
|
843
1263
|
"name": "iphone se (3rd gen)",
|
|
@@ -847,9 +1267,15 @@
|
|
|
847
1267
|
"aspect": "regular",
|
|
848
1268
|
"type": "phone",
|
|
849
1269
|
"importance": 59,
|
|
850
|
-
"insets": [
|
|
1270
|
+
"insets": [
|
|
1271
|
+
20,
|
|
1272
|
+
0,
|
|
1273
|
+
0,
|
|
1274
|
+
0
|
|
1275
|
+
],
|
|
851
1276
|
"navigationBarType": "none",
|
|
852
|
-
"radius": 0
|
|
1277
|
+
"radius": 0,
|
|
1278
|
+
"multiplier": 1
|
|
853
1279
|
},
|
|
854
1280
|
{
|
|
855
1281
|
"name": "iphone 12 mini",
|
|
@@ -859,9 +1285,15 @@
|
|
|
859
1285
|
"aspect": "tall",
|
|
860
1286
|
"type": "phone",
|
|
861
1287
|
"importance": 70,
|
|
862
|
-
"insets": [
|
|
1288
|
+
"insets": [
|
|
1289
|
+
47,
|
|
1290
|
+
0,
|
|
1291
|
+
34,
|
|
1292
|
+
0
|
|
1293
|
+
],
|
|
863
1294
|
"navigationBarType": "homeIndicator",
|
|
864
|
-
"radius": 40
|
|
1295
|
+
"radius": 40,
|
|
1296
|
+
"multiplier": 1.04
|
|
865
1297
|
},
|
|
866
1298
|
{
|
|
867
1299
|
"name": "iphone 13 mini",
|
|
@@ -871,9 +1303,15 @@
|
|
|
871
1303
|
"aspect": "tall",
|
|
872
1304
|
"type": "phone",
|
|
873
1305
|
"importance": 78,
|
|
874
|
-
"insets": [
|
|
1306
|
+
"insets": [
|
|
1307
|
+
47,
|
|
1308
|
+
0,
|
|
1309
|
+
34,
|
|
1310
|
+
0
|
|
1311
|
+
],
|
|
875
1312
|
"navigationBarType": "homeIndicator",
|
|
876
|
-
"radius": 40
|
|
1313
|
+
"radius": 40,
|
|
1314
|
+
"multiplier": 1.04
|
|
877
1315
|
},
|
|
878
1316
|
{
|
|
879
1317
|
"name": "iphone (1st gen)",
|
|
@@ -883,9 +1321,15 @@
|
|
|
883
1321
|
"aspect": "wide",
|
|
884
1322
|
"type": "phone",
|
|
885
1323
|
"importance": 82,
|
|
886
|
-
"insets": [
|
|
1324
|
+
"insets": [
|
|
1325
|
+
20,
|
|
1326
|
+
0,
|
|
1327
|
+
0,
|
|
1328
|
+
0
|
|
1329
|
+
],
|
|
887
1330
|
"navigationBarType": "none",
|
|
888
|
-
"radius": 0
|
|
1331
|
+
"radius": 0,
|
|
1332
|
+
"multiplier": 1.17
|
|
889
1333
|
},
|
|
890
1334
|
{
|
|
891
1335
|
"name": "iphone 3g",
|
|
@@ -895,9 +1339,15 @@
|
|
|
895
1339
|
"aspect": "wide",
|
|
896
1340
|
"type": "phone",
|
|
897
1341
|
"importance": 84,
|
|
898
|
-
"insets": [
|
|
1342
|
+
"insets": [
|
|
1343
|
+
20,
|
|
1344
|
+
0,
|
|
1345
|
+
0,
|
|
1346
|
+
0
|
|
1347
|
+
],
|
|
899
1348
|
"navigationBarType": "none",
|
|
900
|
-
"radius": 0
|
|
1349
|
+
"radius": 0,
|
|
1350
|
+
"multiplier": 1.17
|
|
901
1351
|
},
|
|
902
1352
|
{
|
|
903
1353
|
"name": "iphone 3gs",
|
|
@@ -907,9 +1357,15 @@
|
|
|
907
1357
|
"aspect": "wide",
|
|
908
1358
|
"type": "phone",
|
|
909
1359
|
"importance": 88,
|
|
910
|
-
"insets": [
|
|
1360
|
+
"insets": [
|
|
1361
|
+
20,
|
|
1362
|
+
0,
|
|
1363
|
+
0,
|
|
1364
|
+
0
|
|
1365
|
+
],
|
|
911
1366
|
"navigationBarType": "none",
|
|
912
|
-
"radius": 0
|
|
1367
|
+
"radius": 0,
|
|
1368
|
+
"multiplier": 1.17
|
|
913
1369
|
},
|
|
914
1370
|
{
|
|
915
1371
|
"name": "iphone 4",
|
|
@@ -919,9 +1375,15 @@
|
|
|
919
1375
|
"aspect": "wide",
|
|
920
1376
|
"type": "phone",
|
|
921
1377
|
"importance": 86,
|
|
922
|
-
"insets": [
|
|
1378
|
+
"insets": [
|
|
1379
|
+
20,
|
|
1380
|
+
0,
|
|
1381
|
+
0,
|
|
1382
|
+
0
|
|
1383
|
+
],
|
|
923
1384
|
"navigationBarType": "none",
|
|
924
|
-
"radius": 0
|
|
1385
|
+
"radius": 0,
|
|
1386
|
+
"multiplier": 1.17
|
|
925
1387
|
},
|
|
926
1388
|
{
|
|
927
1389
|
"name": "iphone 4s",
|
|
@@ -931,9 +1393,15 @@
|
|
|
931
1393
|
"aspect": "wide",
|
|
932
1394
|
"type": "phone",
|
|
933
1395
|
"importance": 92,
|
|
934
|
-
"insets": [
|
|
1396
|
+
"insets": [
|
|
1397
|
+
20,
|
|
1398
|
+
0,
|
|
1399
|
+
0,
|
|
1400
|
+
0
|
|
1401
|
+
],
|
|
935
1402
|
"navigationBarType": "none",
|
|
936
|
-
"radius": 0
|
|
1403
|
+
"radius": 0,
|
|
1404
|
+
"multiplier": 1.17
|
|
937
1405
|
},
|
|
938
1406
|
{
|
|
939
1407
|
"name": "iphone 5",
|
|
@@ -943,9 +1411,15 @@
|
|
|
943
1411
|
"aspect": "regular",
|
|
944
1412
|
"type": "phone",
|
|
945
1413
|
"importance": 100,
|
|
946
|
-
"insets": [
|
|
1414
|
+
"insets": [
|
|
1415
|
+
20,
|
|
1416
|
+
0,
|
|
1417
|
+
0,
|
|
1418
|
+
0
|
|
1419
|
+
],
|
|
947
1420
|
"navigationBarType": "none",
|
|
948
|
-
"radius": 0
|
|
1421
|
+
"radius": 0,
|
|
1422
|
+
"multiplier": 1.17
|
|
949
1423
|
},
|
|
950
1424
|
{
|
|
951
1425
|
"name": "iphone 5c",
|
|
@@ -955,9 +1429,15 @@
|
|
|
955
1429
|
"aspect": "regular",
|
|
956
1430
|
"type": "phone",
|
|
957
1431
|
"importance": 92,
|
|
958
|
-
"insets": [
|
|
1432
|
+
"insets": [
|
|
1433
|
+
20,
|
|
1434
|
+
0,
|
|
1435
|
+
0,
|
|
1436
|
+
0
|
|
1437
|
+
],
|
|
959
1438
|
"navigationBarType": "none",
|
|
960
|
-
"radius": 0
|
|
1439
|
+
"radius": 0,
|
|
1440
|
+
"multiplier": 1.17
|
|
961
1441
|
},
|
|
962
1442
|
{
|
|
963
1443
|
"name": "iphone 5s",
|
|
@@ -967,9 +1447,15 @@
|
|
|
967
1447
|
"aspect": "regular",
|
|
968
1448
|
"type": "phone",
|
|
969
1449
|
"importance": 96,
|
|
970
|
-
"insets": [
|
|
1450
|
+
"insets": [
|
|
1451
|
+
20,
|
|
1452
|
+
0,
|
|
1453
|
+
0,
|
|
1454
|
+
0
|
|
1455
|
+
],
|
|
971
1456
|
"navigationBarType": "none",
|
|
972
|
-
"radius": 0
|
|
1457
|
+
"radius": 0,
|
|
1458
|
+
"multiplier": 1.17
|
|
973
1459
|
},
|
|
974
1460
|
{
|
|
975
1461
|
"name": "iphone se (1st gen)",
|
|
@@ -979,9 +1465,15 @@
|
|
|
979
1465
|
"aspect": "regular",
|
|
980
1466
|
"type": "phone",
|
|
981
1467
|
"importance": 86,
|
|
982
|
-
"insets": [
|
|
1468
|
+
"insets": [
|
|
1469
|
+
20,
|
|
1470
|
+
0,
|
|
1471
|
+
0,
|
|
1472
|
+
0
|
|
1473
|
+
],
|
|
983
1474
|
"navigationBarType": "none",
|
|
984
|
-
"radius": 0
|
|
1475
|
+
"radius": 0,
|
|
1476
|
+
"multiplier": 1.17
|
|
985
1477
|
},
|
|
986
1478
|
{
|
|
987
1479
|
"name": "nexus 7 (2013)",
|
|
@@ -991,9 +1483,15 @@
|
|
|
991
1483
|
"aspect": "wide",
|
|
992
1484
|
"type": "tablet",
|
|
993
1485
|
"importance": 83,
|
|
994
|
-
"insets": [
|
|
1486
|
+
"insets": [
|
|
1487
|
+
24,
|
|
1488
|
+
0,
|
|
1489
|
+
48,
|
|
1490
|
+
0
|
|
1491
|
+
],
|
|
995
1492
|
"navigationBarType": "threeButtons",
|
|
996
|
-
"radius": 12
|
|
1493
|
+
"radius": 12,
|
|
1494
|
+
"multiplier": 0.63
|
|
997
1495
|
},
|
|
998
1496
|
{
|
|
999
1497
|
"name": "nexus 9",
|
|
@@ -1003,9 +1501,15 @@
|
|
|
1003
1501
|
"aspect": "wide",
|
|
1004
1502
|
"type": "tablet",
|
|
1005
1503
|
"importance": 90,
|
|
1006
|
-
"insets": [
|
|
1504
|
+
"insets": [
|
|
1505
|
+
24,
|
|
1506
|
+
0,
|
|
1507
|
+
48,
|
|
1508
|
+
0
|
|
1509
|
+
],
|
|
1007
1510
|
"navigationBarType": "threeButtons",
|
|
1008
|
-
"radius": 12
|
|
1511
|
+
"radius": 12,
|
|
1512
|
+
"multiplier": 0.49
|
|
1009
1513
|
},
|
|
1010
1514
|
{
|
|
1011
1515
|
"name": "pixel c",
|
|
@@ -1015,9 +1519,15 @@
|
|
|
1015
1519
|
"aspect": "wide",
|
|
1016
1520
|
"type": "tablet",
|
|
1017
1521
|
"importance": 100,
|
|
1018
|
-
"insets": [
|
|
1522
|
+
"insets": [
|
|
1523
|
+
24,
|
|
1524
|
+
0,
|
|
1525
|
+
48,
|
|
1526
|
+
0
|
|
1527
|
+
],
|
|
1019
1528
|
"navigationBarType": "threeButtons",
|
|
1020
|
-
"radius": 12
|
|
1529
|
+
"radius": 12,
|
|
1530
|
+
"multiplier": 0.42
|
|
1021
1531
|
},
|
|
1022
1532
|
{
|
|
1023
1533
|
"name": "galaxy tab s6",
|
|
@@ -1027,9 +1537,15 @@
|
|
|
1027
1537
|
"aspect": "wide",
|
|
1028
1538
|
"type": "tablet",
|
|
1029
1539
|
"importance": 97,
|
|
1030
|
-
"insets": [
|
|
1540
|
+
"insets": [
|
|
1541
|
+
24,
|
|
1542
|
+
0,
|
|
1543
|
+
24,
|
|
1544
|
+
0
|
|
1545
|
+
],
|
|
1031
1546
|
"navigationBarType": "gesture",
|
|
1032
|
-
"radius": 12
|
|
1547
|
+
"radius": 12,
|
|
1548
|
+
"multiplier": 0.47
|
|
1033
1549
|
},
|
|
1034
1550
|
{
|
|
1035
1551
|
"name": "galaxy tab s7",
|
|
@@ -1039,9 +1555,15 @@
|
|
|
1039
1555
|
"aspect": "wide",
|
|
1040
1556
|
"type": "tablet",
|
|
1041
1557
|
"importance": 99,
|
|
1042
|
-
"insets": [
|
|
1558
|
+
"insets": [
|
|
1559
|
+
24,
|
|
1560
|
+
0,
|
|
1561
|
+
24,
|
|
1562
|
+
0
|
|
1563
|
+
],
|
|
1043
1564
|
"navigationBarType": "gesture",
|
|
1044
|
-
"radius": 12
|
|
1565
|
+
"radius": 12,
|
|
1566
|
+
"multiplier": 0.47
|
|
1045
1567
|
},
|
|
1046
1568
|
{
|
|
1047
1569
|
"name": "galaxy tab s8",
|
|
@@ -1051,9 +1573,15 @@
|
|
|
1051
1573
|
"aspect": "wide",
|
|
1052
1574
|
"type": "tablet",
|
|
1053
1575
|
"importance": 81,
|
|
1054
|
-
"insets": [
|
|
1576
|
+
"insets": [
|
|
1577
|
+
24,
|
|
1578
|
+
0,
|
|
1579
|
+
24,
|
|
1580
|
+
0
|
|
1581
|
+
],
|
|
1055
1582
|
"navigationBarType": "gesture",
|
|
1056
|
-
"radius": 12
|
|
1583
|
+
"radius": 12,
|
|
1584
|
+
"multiplier": 0.47
|
|
1057
1585
|
},
|
|
1058
1586
|
{
|
|
1059
1587
|
"name": "galaxy tab a 10.1",
|
|
@@ -1063,9 +1591,15 @@
|
|
|
1063
1591
|
"aspect": "wide",
|
|
1064
1592
|
"type": "tablet",
|
|
1065
1593
|
"importance": 94,
|
|
1066
|
-
"insets": [
|
|
1594
|
+
"insets": [
|
|
1595
|
+
24,
|
|
1596
|
+
0,
|
|
1597
|
+
48,
|
|
1598
|
+
0
|
|
1599
|
+
],
|
|
1067
1600
|
"navigationBarType": "threeButtons",
|
|
1068
|
-
"radius": 12
|
|
1601
|
+
"radius": 12,
|
|
1602
|
+
"multiplier": 0.47
|
|
1069
1603
|
},
|
|
1070
1604
|
{
|
|
1071
1605
|
"name": "lenovo tab p11",
|
|
@@ -1075,9 +1609,15 @@
|
|
|
1075
1609
|
"aspect": "wide",
|
|
1076
1610
|
"type": "tablet",
|
|
1077
1611
|
"importance": 91,
|
|
1078
|
-
"insets": [
|
|
1612
|
+
"insets": [
|
|
1613
|
+
24,
|
|
1614
|
+
0,
|
|
1615
|
+
24,
|
|
1616
|
+
0
|
|
1617
|
+
],
|
|
1079
1618
|
"navigationBarType": "gesture",
|
|
1080
|
-
"radius": 12
|
|
1619
|
+
"radius": 12,
|
|
1620
|
+
"multiplier": 0.47
|
|
1081
1621
|
},
|
|
1082
1622
|
{
|
|
1083
1623
|
"name": "fire hd 10",
|
|
@@ -1087,8 +1627,32 @@
|
|
|
1087
1627
|
"aspect": "wide",
|
|
1088
1628
|
"type": "tablet",
|
|
1089
1629
|
"importance": 98,
|
|
1090
|
-
"insets": [
|
|
1630
|
+
"insets": [
|
|
1631
|
+
24,
|
|
1632
|
+
0,
|
|
1633
|
+
48,
|
|
1634
|
+
0
|
|
1635
|
+
],
|
|
1091
1636
|
"navigationBarType": "threeButtons",
|
|
1092
|
-
"radius": 12
|
|
1637
|
+
"radius": 12,
|
|
1638
|
+
"multiplier": 0.47
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"name": "poco x3",
|
|
1642
|
+
"platform": "android",
|
|
1643
|
+
"width": 393,
|
|
1644
|
+
"height": 873,
|
|
1645
|
+
"aspect": "tall",
|
|
1646
|
+
"type": "phone",
|
|
1647
|
+
"importance": 50,
|
|
1648
|
+
"insets": [
|
|
1649
|
+
32,
|
|
1650
|
+
0,
|
|
1651
|
+
32,
|
|
1652
|
+
0
|
|
1653
|
+
],
|
|
1654
|
+
"navigationBarType": "gesture",
|
|
1655
|
+
"radius": 20,
|
|
1656
|
+
"multiplier": 0.95
|
|
1093
1657
|
}
|
|
1094
|
-
]
|
|
1658
|
+
]
|