@tactics/toddle-styleguide 1.2.2 → 1.2.4

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.
Files changed (56) hide show
  1. package/App.tsx +196 -183
  2. package/index.d.ts +3 -2
  3. package/index.tsx +4 -2
  4. package/package.json +5 -1
  5. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1776 -596
  6. package/src/components/atoms/calendar/calendar.component.tsx +8 -6
  7. package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +70 -62
  8. package/src/components/molecules/avatar/avatar.component.d.ts +2 -1
  9. package/src/components/molecules/avatar/avatar.component.tsx +22 -11
  10. package/src/components/molecules/avatar/avatar.preview.tsx +58 -44
  11. package/src/components/molecules/avatar/avatar.styles.d.ts +54 -15
  12. package/src/components/molecules/avatar/avatar.styles.js +33 -5
  13. package/src/components/molecules/calendar-select/calendar-select.component.d.ts +2 -2
  14. package/src/components/molecules/calendar-select/calendar-select.component.tsx +4 -14
  15. package/src/components/molecules/calendar-select/calendar-select.preview.tsx +9 -22
  16. package/src/components/molecules/date-input/date-input.preview.tsx +25 -23
  17. package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +2241 -0
  18. package/src/components/molecules/time-picker/time-picker.component.d.ts +8 -0
  19. package/src/components/molecules/time-picker/time-picker.component.tsx +91 -0
  20. package/src/components/molecules/time-picker/time-picker.preview.d.ts +1 -0
  21. package/src/components/molecules/time-picker/time-picker.preview.tsx +110 -0
  22. package/src/components/molecules/time-picker/time-picker.styles.d.ts +27 -0
  23. package/src/components/molecules/time-picker/time-picker.styles.js +31 -0
  24. package/src/components/molecules/time-picker/time-picker.test.js +18 -0
  25. package/src/components/molecules/time-tracker/time-tracker.test.js +0 -1
  26. package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +47 -39
  27. package/src/components/molecules/timeline/timeline.component.d.ts +2 -2
  28. package/src/components/molecules/timeline/timeline.component.tsx +27 -120
  29. package/src/components/molecules/timeline/timeline.preview.tsx +9 -20
  30. package/src/components/molecules/timeline/timeline.styles.d.ts +58 -40
  31. package/src/components/molecules/timeline/timeline.styles.js +24 -17
  32. package/src/components/molecules/timeline/timeline.test.js +3 -3
  33. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +174 -162
  34. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +70 -127
  35. package/src/components/organisms/contact-item/contact-item.component.tsx +10 -9
  36. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +97 -89
  37. package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +233 -209
  38. package/src/components/templates/modal/components/fade-panel.component.d.ts +2 -1
  39. package/src/components/templates/modal/components/fade-panel.component.tsx +8 -2
  40. package/src/components/templates/modal/modal.component.d.ts +2 -1
  41. package/src/components/templates/modal/modal.component.tsx +4 -3
  42. package/src/components/templates/modal/modal.styles.d.ts +3 -6
  43. package/src/components/templates/modal/modal.styles.js +3 -3
  44. package/src/components/templates/popover/components/modal/modal.component.tsx +0 -3
  45. package/src/components/templates/popover/components/modal/modal.styles.d.ts +2 -1
  46. package/src/components/templates/popover/components/modal/modal.styles.js +2 -2
  47. package/src/components/templates/popover/popover.component.tsx +27 -14
  48. package/src/components/templates/popover/popover.preview.tsx +63 -97
  49. package/src/components/templates/popover/popover.styles.d.ts +1 -1
  50. package/src/components/templates/popover/popover.styles.js +3 -1
  51. package/src/theme/provider/parent.theme.d.ts +4 -1
  52. package/src/theme/provider/parent.theme.ts +4 -1
  53. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +3 -2
  54. package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +9 -2
  55. package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +15 -1
  56. package/src/utilities/toddle-datetime/toddle-datetime.test.js +10 -0
@@ -0,0 +1,2241 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Time picker test Should render a time picker where we can choose the hours and minutes separately, and our initial set time is 08:00 1`] = `
4
+ <View
5
+ style={
6
+ {
7
+ "alignItems": "center",
8
+ "flexDirection": "row",
9
+ "gap": 12,
10
+ }
11
+ }
12
+ >
13
+ <View
14
+ style={
15
+ {
16
+ "alignItems": "center",
17
+ "borderColor": "#E5E8EB",
18
+ "borderRadius": 20,
19
+ "borderStyle": "solid",
20
+ "borderWidth": 1,
21
+ "justifyContent": "center",
22
+ "maxHeight": 72,
23
+ "maxWidth": 72,
24
+ "overflow": "hidden",
25
+ }
26
+ }
27
+ >
28
+ <View
29
+ style={
30
+ {
31
+ "backgroundColor": "#F5F7FA",
32
+ "height": 320,
33
+ "width": 72,
34
+ }
35
+ }
36
+ >
37
+ <RCTScrollView
38
+ data={
39
+ [
40
+ {
41
+ "label": "",
42
+ "value": null,
43
+ },
44
+ {
45
+ "label": "",
46
+ "value": null,
47
+ },
48
+ {
49
+ "label": "--",
50
+ "value": "--",
51
+ },
52
+ {
53
+ "label": "00",
54
+ "value": "00",
55
+ },
56
+ {
57
+ "label": "01",
58
+ "value": "01",
59
+ },
60
+ {
61
+ "label": "02",
62
+ "value": "02",
63
+ },
64
+ {
65
+ "label": "03",
66
+ "value": "03",
67
+ },
68
+ {
69
+ "label": "04",
70
+ "value": "04",
71
+ },
72
+ {
73
+ "label": "05",
74
+ "value": "05",
75
+ },
76
+ {
77
+ "label": "06",
78
+ "value": "06",
79
+ },
80
+ {
81
+ "label": "07",
82
+ "value": "07",
83
+ },
84
+ {
85
+ "label": "08",
86
+ "value": "08",
87
+ },
88
+ {
89
+ "label": "09",
90
+ "value": "09",
91
+ },
92
+ {
93
+ "label": "10",
94
+ "value": "10",
95
+ },
96
+ {
97
+ "label": "11",
98
+ "value": "11",
99
+ },
100
+ {
101
+ "label": "12",
102
+ "value": "12",
103
+ },
104
+ {
105
+ "label": "13",
106
+ "value": "13",
107
+ },
108
+ {
109
+ "label": "14",
110
+ "value": "14",
111
+ },
112
+ {
113
+ "label": "15",
114
+ "value": "15",
115
+ },
116
+ {
117
+ "label": "16",
118
+ "value": "16",
119
+ },
120
+ {
121
+ "label": "17",
122
+ "value": "17",
123
+ },
124
+ {
125
+ "label": "18",
126
+ "value": "18",
127
+ },
128
+ {
129
+ "label": "19",
130
+ "value": "19",
131
+ },
132
+ {
133
+ "label": "20",
134
+ "value": "20",
135
+ },
136
+ {
137
+ "label": "21",
138
+ "value": "21",
139
+ },
140
+ {
141
+ "label": "22",
142
+ "value": "22",
143
+ },
144
+ {
145
+ "label": "23",
146
+ "value": "23",
147
+ },
148
+ {
149
+ "label": "",
150
+ "value": null,
151
+ },
152
+ {
153
+ "label": "",
154
+ "value": null,
155
+ },
156
+ ]
157
+ }
158
+ getItem={[Function]}
159
+ getItemCount={[Function]}
160
+ getItemLayout={[Function]}
161
+ initialScrollIndex={9}
162
+ keyExtractor={[Function]}
163
+ onContentSizeChange={[Function]}
164
+ onLayout={[Function]}
165
+ onMomentumScrollBegin={[Function]}
166
+ onMomentumScrollEnd={[Function]}
167
+ onScroll={[Function]}
168
+ onScrollBeginDrag={[Function]}
169
+ onScrollEndDrag={[Function]}
170
+ onTouchStart={[Function]}
171
+ removeClippedSubviews={false}
172
+ renderItem={[Function]}
173
+ scrollEventThrottle={50}
174
+ showsVerticalScrollIndicator={false}
175
+ snapToInterval={64}
176
+ stickyHeaderIndices={[]}
177
+ viewabilityConfigCallbackPairs={[]}
178
+ >
179
+ <View>
180
+ <View
181
+ style={
182
+ {
183
+ "height": 576,
184
+ }
185
+ }
186
+ />
187
+ <View
188
+ onFocusCapture={[Function]}
189
+ style={null}
190
+ >
191
+ <View
192
+ accessibilityState={
193
+ {
194
+ "busy": undefined,
195
+ "checked": undefined,
196
+ "disabled": undefined,
197
+ "expanded": undefined,
198
+ "selected": undefined,
199
+ }
200
+ }
201
+ accessibilityValue={
202
+ {
203
+ "max": undefined,
204
+ "min": undefined,
205
+ "now": undefined,
206
+ "text": undefined,
207
+ }
208
+ }
209
+ accessible={true}
210
+ collapsable={false}
211
+ focusable={true}
212
+ onClick={[Function]}
213
+ onResponderGrant={[Function]}
214
+ onResponderMove={[Function]}
215
+ onResponderRelease={[Function]}
216
+ onResponderTerminate={[Function]}
217
+ onResponderTerminationRequest={[Function]}
218
+ onStartShouldSetResponder={[Function]}
219
+ style={
220
+ {
221
+ "opacity": 1,
222
+ }
223
+ }
224
+ >
225
+ <View
226
+ style={
227
+ {
228
+ "alignItems": "center",
229
+ "backgroundColor": "#F5F7FA",
230
+ "fontSize": 32,
231
+ "height": 64,
232
+ "justifyContent": "center",
233
+ }
234
+ }
235
+ >
236
+ <Text
237
+ style={
238
+ [
239
+ [
240
+ {
241
+ "fontFamily": "SourceSansPro",
242
+ "fontSize": 38,
243
+ "lineHeight": 47.8,
244
+ },
245
+ ],
246
+ {
247
+ "color": "#9AA5B1",
248
+ "textAlign": "center",
249
+ "width": "100%",
250
+ },
251
+ {
252
+ "fontSize": 42,
253
+ "fontWeight": "200",
254
+ },
255
+ ]
256
+ }
257
+ >
258
+ 06
259
+ </Text>
260
+ </View>
261
+ </View>
262
+ </View>
263
+ <View
264
+ onFocusCapture={[Function]}
265
+ style={null}
266
+ >
267
+ <View
268
+ accessibilityState={
269
+ {
270
+ "busy": undefined,
271
+ "checked": undefined,
272
+ "disabled": undefined,
273
+ "expanded": undefined,
274
+ "selected": undefined,
275
+ }
276
+ }
277
+ accessibilityValue={
278
+ {
279
+ "max": undefined,
280
+ "min": undefined,
281
+ "now": undefined,
282
+ "text": undefined,
283
+ }
284
+ }
285
+ accessible={true}
286
+ collapsable={false}
287
+ focusable={true}
288
+ onClick={[Function]}
289
+ onResponderGrant={[Function]}
290
+ onResponderMove={[Function]}
291
+ onResponderRelease={[Function]}
292
+ onResponderTerminate={[Function]}
293
+ onResponderTerminationRequest={[Function]}
294
+ onStartShouldSetResponder={[Function]}
295
+ style={
296
+ {
297
+ "opacity": 1,
298
+ }
299
+ }
300
+ >
301
+ <View
302
+ style={
303
+ {
304
+ "alignItems": "center",
305
+ "backgroundColor": "#F5F7FA",
306
+ "fontSize": 32,
307
+ "height": 64,
308
+ "justifyContent": "center",
309
+ }
310
+ }
311
+ >
312
+ <Text
313
+ style={
314
+ [
315
+ [
316
+ {
317
+ "fontFamily": "SourceSansPro",
318
+ "fontSize": 38,
319
+ "lineHeight": 47.8,
320
+ },
321
+ ],
322
+ {
323
+ "color": "#9AA5B1",
324
+ "textAlign": "center",
325
+ "width": "100%",
326
+ },
327
+ {
328
+ "fontSize": 42,
329
+ "fontWeight": "200",
330
+ },
331
+ ]
332
+ }
333
+ >
334
+ 07
335
+ </Text>
336
+ </View>
337
+ </View>
338
+ </View>
339
+ <View
340
+ onFocusCapture={[Function]}
341
+ style={null}
342
+ >
343
+ <View
344
+ accessibilityState={
345
+ {
346
+ "busy": undefined,
347
+ "checked": undefined,
348
+ "disabled": undefined,
349
+ "expanded": undefined,
350
+ "selected": undefined,
351
+ }
352
+ }
353
+ accessibilityValue={
354
+ {
355
+ "max": undefined,
356
+ "min": undefined,
357
+ "now": undefined,
358
+ "text": undefined,
359
+ }
360
+ }
361
+ accessible={true}
362
+ collapsable={false}
363
+ focusable={true}
364
+ onClick={[Function]}
365
+ onResponderGrant={[Function]}
366
+ onResponderMove={[Function]}
367
+ onResponderRelease={[Function]}
368
+ onResponderTerminate={[Function]}
369
+ onResponderTerminationRequest={[Function]}
370
+ onStartShouldSetResponder={[Function]}
371
+ style={
372
+ {
373
+ "opacity": 1,
374
+ }
375
+ }
376
+ >
377
+ <View
378
+ style={
379
+ {
380
+ "alignItems": "center",
381
+ "backgroundColor": "#F5F7FA",
382
+ "fontSize": 32,
383
+ "height": 64,
384
+ "justifyContent": "center",
385
+ }
386
+ }
387
+ >
388
+ <Text
389
+ style={
390
+ [
391
+ [
392
+ {
393
+ "fontFamily": "SourceSansPro",
394
+ "fontSize": 38,
395
+ "lineHeight": 47.8,
396
+ },
397
+ ],
398
+ {
399
+ "color": "#9AA5B1",
400
+ "textAlign": "center",
401
+ "width": "100%",
402
+ },
403
+ {
404
+ "fontSize": 42,
405
+ "fontWeight": "200",
406
+ },
407
+ ]
408
+ }
409
+ >
410
+ 08
411
+ </Text>
412
+ </View>
413
+ </View>
414
+ </View>
415
+ <View
416
+ onFocusCapture={[Function]}
417
+ style={null}
418
+ >
419
+ <View
420
+ accessibilityState={
421
+ {
422
+ "busy": undefined,
423
+ "checked": undefined,
424
+ "disabled": undefined,
425
+ "expanded": undefined,
426
+ "selected": undefined,
427
+ }
428
+ }
429
+ accessibilityValue={
430
+ {
431
+ "max": undefined,
432
+ "min": undefined,
433
+ "now": undefined,
434
+ "text": undefined,
435
+ }
436
+ }
437
+ accessible={true}
438
+ collapsable={false}
439
+ focusable={true}
440
+ onClick={[Function]}
441
+ onResponderGrant={[Function]}
442
+ onResponderMove={[Function]}
443
+ onResponderRelease={[Function]}
444
+ onResponderTerminate={[Function]}
445
+ onResponderTerminationRequest={[Function]}
446
+ onStartShouldSetResponder={[Function]}
447
+ style={
448
+ {
449
+ "opacity": 1,
450
+ }
451
+ }
452
+ >
453
+ <View
454
+ style={
455
+ {
456
+ "alignItems": "center",
457
+ "backgroundColor": "#F5F7FA",
458
+ "fontSize": 32,
459
+ "height": 64,
460
+ "justifyContent": "center",
461
+ }
462
+ }
463
+ >
464
+ <Text
465
+ style={
466
+ [
467
+ [
468
+ {
469
+ "fontFamily": "SourceSansPro",
470
+ "fontSize": 38,
471
+ "lineHeight": 47.8,
472
+ },
473
+ ],
474
+ {
475
+ "color": "#9AA5B1",
476
+ "textAlign": "center",
477
+ "width": "100%",
478
+ },
479
+ {
480
+ "fontSize": 42,
481
+ "fontWeight": "200",
482
+ },
483
+ ]
484
+ }
485
+ >
486
+ 09
487
+ </Text>
488
+ </View>
489
+ </View>
490
+ </View>
491
+ <View
492
+ onFocusCapture={[Function]}
493
+ style={null}
494
+ >
495
+ <View
496
+ accessibilityState={
497
+ {
498
+ "busy": undefined,
499
+ "checked": undefined,
500
+ "disabled": undefined,
501
+ "expanded": undefined,
502
+ "selected": undefined,
503
+ }
504
+ }
505
+ accessibilityValue={
506
+ {
507
+ "max": undefined,
508
+ "min": undefined,
509
+ "now": undefined,
510
+ "text": undefined,
511
+ }
512
+ }
513
+ accessible={true}
514
+ collapsable={false}
515
+ focusable={true}
516
+ onClick={[Function]}
517
+ onResponderGrant={[Function]}
518
+ onResponderMove={[Function]}
519
+ onResponderRelease={[Function]}
520
+ onResponderTerminate={[Function]}
521
+ onResponderTerminationRequest={[Function]}
522
+ onStartShouldSetResponder={[Function]}
523
+ style={
524
+ {
525
+ "opacity": 1,
526
+ }
527
+ }
528
+ >
529
+ <View
530
+ style={
531
+ {
532
+ "alignItems": "center",
533
+ "backgroundColor": "#F5F7FA",
534
+ "fontSize": 32,
535
+ "height": 64,
536
+ "justifyContent": "center",
537
+ }
538
+ }
539
+ >
540
+ <Text
541
+ style={
542
+ [
543
+ [
544
+ {
545
+ "fontFamily": "SourceSansPro",
546
+ "fontSize": 38,
547
+ "lineHeight": 47.8,
548
+ },
549
+ ],
550
+ {
551
+ "color": "#9AA5B1",
552
+ "textAlign": "center",
553
+ "width": "100%",
554
+ },
555
+ {
556
+ "fontSize": 42,
557
+ "fontWeight": "200",
558
+ },
559
+ ]
560
+ }
561
+ >
562
+ 10
563
+ </Text>
564
+ </View>
565
+ </View>
566
+ </View>
567
+ <View
568
+ onFocusCapture={[Function]}
569
+ style={null}
570
+ >
571
+ <View
572
+ accessibilityState={
573
+ {
574
+ "busy": undefined,
575
+ "checked": undefined,
576
+ "disabled": undefined,
577
+ "expanded": undefined,
578
+ "selected": undefined,
579
+ }
580
+ }
581
+ accessibilityValue={
582
+ {
583
+ "max": undefined,
584
+ "min": undefined,
585
+ "now": undefined,
586
+ "text": undefined,
587
+ }
588
+ }
589
+ accessible={true}
590
+ collapsable={false}
591
+ focusable={true}
592
+ onClick={[Function]}
593
+ onResponderGrant={[Function]}
594
+ onResponderMove={[Function]}
595
+ onResponderRelease={[Function]}
596
+ onResponderTerminate={[Function]}
597
+ onResponderTerminationRequest={[Function]}
598
+ onStartShouldSetResponder={[Function]}
599
+ style={
600
+ {
601
+ "opacity": 1,
602
+ }
603
+ }
604
+ >
605
+ <View
606
+ style={
607
+ {
608
+ "alignItems": "center",
609
+ "backgroundColor": "#F5F7FA",
610
+ "fontSize": 32,
611
+ "height": 64,
612
+ "justifyContent": "center",
613
+ }
614
+ }
615
+ >
616
+ <Text
617
+ style={
618
+ [
619
+ [
620
+ {
621
+ "fontFamily": "SourceSansPro",
622
+ "fontSize": 38,
623
+ "lineHeight": 47.8,
624
+ },
625
+ ],
626
+ {
627
+ "color": "#9AA5B1",
628
+ "textAlign": "center",
629
+ "width": "100%",
630
+ },
631
+ {
632
+ "fontSize": 42,
633
+ "fontWeight": "200",
634
+ },
635
+ ]
636
+ }
637
+ >
638
+ 11
639
+ </Text>
640
+ </View>
641
+ </View>
642
+ </View>
643
+ <View
644
+ onFocusCapture={[Function]}
645
+ style={null}
646
+ >
647
+ <View
648
+ accessibilityState={
649
+ {
650
+ "busy": undefined,
651
+ "checked": undefined,
652
+ "disabled": undefined,
653
+ "expanded": undefined,
654
+ "selected": undefined,
655
+ }
656
+ }
657
+ accessibilityValue={
658
+ {
659
+ "max": undefined,
660
+ "min": undefined,
661
+ "now": undefined,
662
+ "text": undefined,
663
+ }
664
+ }
665
+ accessible={true}
666
+ collapsable={false}
667
+ focusable={true}
668
+ onClick={[Function]}
669
+ onResponderGrant={[Function]}
670
+ onResponderMove={[Function]}
671
+ onResponderRelease={[Function]}
672
+ onResponderTerminate={[Function]}
673
+ onResponderTerminationRequest={[Function]}
674
+ onStartShouldSetResponder={[Function]}
675
+ style={
676
+ {
677
+ "opacity": 1,
678
+ }
679
+ }
680
+ >
681
+ <View
682
+ style={
683
+ {
684
+ "alignItems": "center",
685
+ "backgroundColor": "#F5F7FA",
686
+ "fontSize": 32,
687
+ "height": 64,
688
+ "justifyContent": "center",
689
+ }
690
+ }
691
+ >
692
+ <Text
693
+ style={
694
+ [
695
+ [
696
+ {
697
+ "fontFamily": "SourceSansPro",
698
+ "fontSize": 38,
699
+ "lineHeight": 47.8,
700
+ },
701
+ ],
702
+ {
703
+ "color": "#9AA5B1",
704
+ "textAlign": "center",
705
+ "width": "100%",
706
+ },
707
+ {
708
+ "fontSize": 42,
709
+ "fontWeight": "200",
710
+ },
711
+ ]
712
+ }
713
+ >
714
+ 12
715
+ </Text>
716
+ </View>
717
+ </View>
718
+ </View>
719
+ <View
720
+ onFocusCapture={[Function]}
721
+ style={null}
722
+ >
723
+ <View
724
+ accessibilityState={
725
+ {
726
+ "busy": undefined,
727
+ "checked": undefined,
728
+ "disabled": undefined,
729
+ "expanded": undefined,
730
+ "selected": undefined,
731
+ }
732
+ }
733
+ accessibilityValue={
734
+ {
735
+ "max": undefined,
736
+ "min": undefined,
737
+ "now": undefined,
738
+ "text": undefined,
739
+ }
740
+ }
741
+ accessible={true}
742
+ collapsable={false}
743
+ focusable={true}
744
+ onClick={[Function]}
745
+ onResponderGrant={[Function]}
746
+ onResponderMove={[Function]}
747
+ onResponderRelease={[Function]}
748
+ onResponderTerminate={[Function]}
749
+ onResponderTerminationRequest={[Function]}
750
+ onStartShouldSetResponder={[Function]}
751
+ style={
752
+ {
753
+ "opacity": 1,
754
+ }
755
+ }
756
+ >
757
+ <View
758
+ style={
759
+ {
760
+ "alignItems": "center",
761
+ "backgroundColor": "#F5F7FA",
762
+ "fontSize": 32,
763
+ "height": 64,
764
+ "justifyContent": "center",
765
+ }
766
+ }
767
+ >
768
+ <Text
769
+ style={
770
+ [
771
+ [
772
+ {
773
+ "fontFamily": "SourceSansPro",
774
+ "fontSize": 38,
775
+ "lineHeight": 47.8,
776
+ },
777
+ ],
778
+ {
779
+ "color": "#9AA5B1",
780
+ "textAlign": "center",
781
+ "width": "100%",
782
+ },
783
+ {
784
+ "fontSize": 42,
785
+ "fontWeight": "200",
786
+ },
787
+ ]
788
+ }
789
+ >
790
+ 13
791
+ </Text>
792
+ </View>
793
+ </View>
794
+ </View>
795
+ <View
796
+ onFocusCapture={[Function]}
797
+ style={null}
798
+ >
799
+ <View
800
+ accessibilityState={
801
+ {
802
+ "busy": undefined,
803
+ "checked": undefined,
804
+ "disabled": undefined,
805
+ "expanded": undefined,
806
+ "selected": undefined,
807
+ }
808
+ }
809
+ accessibilityValue={
810
+ {
811
+ "max": undefined,
812
+ "min": undefined,
813
+ "now": undefined,
814
+ "text": undefined,
815
+ }
816
+ }
817
+ accessible={true}
818
+ collapsable={false}
819
+ focusable={true}
820
+ onClick={[Function]}
821
+ onResponderGrant={[Function]}
822
+ onResponderMove={[Function]}
823
+ onResponderRelease={[Function]}
824
+ onResponderTerminate={[Function]}
825
+ onResponderTerminationRequest={[Function]}
826
+ onStartShouldSetResponder={[Function]}
827
+ style={
828
+ {
829
+ "opacity": 1,
830
+ }
831
+ }
832
+ >
833
+ <View
834
+ style={
835
+ {
836
+ "alignItems": "center",
837
+ "backgroundColor": "#F5F7FA",
838
+ "fontSize": 32,
839
+ "height": 64,
840
+ "justifyContent": "center",
841
+ }
842
+ }
843
+ >
844
+ <Text
845
+ style={
846
+ [
847
+ [
848
+ {
849
+ "fontFamily": "SourceSansPro",
850
+ "fontSize": 38,
851
+ "lineHeight": 47.8,
852
+ },
853
+ ],
854
+ {
855
+ "color": "#9AA5B1",
856
+ "textAlign": "center",
857
+ "width": "100%",
858
+ },
859
+ {
860
+ "fontSize": 42,
861
+ "fontWeight": "200",
862
+ },
863
+ ]
864
+ }
865
+ >
866
+ 14
867
+ </Text>
868
+ </View>
869
+ </View>
870
+ </View>
871
+ <View
872
+ onFocusCapture={[Function]}
873
+ style={null}
874
+ >
875
+ <View
876
+ accessibilityState={
877
+ {
878
+ "busy": undefined,
879
+ "checked": undefined,
880
+ "disabled": undefined,
881
+ "expanded": undefined,
882
+ "selected": undefined,
883
+ }
884
+ }
885
+ accessibilityValue={
886
+ {
887
+ "max": undefined,
888
+ "min": undefined,
889
+ "now": undefined,
890
+ "text": undefined,
891
+ }
892
+ }
893
+ accessible={true}
894
+ collapsable={false}
895
+ focusable={true}
896
+ onClick={[Function]}
897
+ onResponderGrant={[Function]}
898
+ onResponderMove={[Function]}
899
+ onResponderRelease={[Function]}
900
+ onResponderTerminate={[Function]}
901
+ onResponderTerminationRequest={[Function]}
902
+ onStartShouldSetResponder={[Function]}
903
+ style={
904
+ {
905
+ "opacity": 1,
906
+ }
907
+ }
908
+ >
909
+ <View
910
+ style={
911
+ {
912
+ "alignItems": "center",
913
+ "backgroundColor": "#F5F7FA",
914
+ "fontSize": 32,
915
+ "height": 64,
916
+ "justifyContent": "center",
917
+ }
918
+ }
919
+ >
920
+ <Text
921
+ style={
922
+ [
923
+ [
924
+ {
925
+ "fontFamily": "SourceSansPro",
926
+ "fontSize": 38,
927
+ "lineHeight": 47.8,
928
+ },
929
+ ],
930
+ {
931
+ "color": "#9AA5B1",
932
+ "textAlign": "center",
933
+ "width": "100%",
934
+ },
935
+ {
936
+ "fontSize": 42,
937
+ "fontWeight": "200",
938
+ },
939
+ ]
940
+ }
941
+ >
942
+ 15
943
+ </Text>
944
+ </View>
945
+ </View>
946
+ </View>
947
+ <View
948
+ style={
949
+ {
950
+ "height": 640,
951
+ }
952
+ }
953
+ />
954
+ </View>
955
+ </RCTScrollView>
956
+ <View
957
+ pointerEvents="none"
958
+ style={
959
+ [
960
+ [
961
+ {
962
+ "borderColor": undefined,
963
+ "height": 128,
964
+ },
965
+ {
966
+ "position": "absolute",
967
+ "width": "100%",
968
+ },
969
+ ],
970
+ {
971
+ "top": 0,
972
+ },
973
+ {
974
+ "borderBottomWidth": undefined,
975
+ },
976
+ ]
977
+ }
978
+ >
979
+ <ViewManagerAdapter_ExpoLinearGradient
980
+ proxiedProperties={
981
+ {
982
+ "colors": [
983
+ 4294309882,
984
+ 871757818,
985
+ ],
986
+ "endPoint": undefined,
987
+ "locations": undefined,
988
+ "startPoint": undefined,
989
+ }
990
+ }
991
+ style={
992
+ {
993
+ "flex": 1,
994
+ }
995
+ }
996
+ />
997
+ </View>
998
+ <View
999
+ pointerEvents="none"
1000
+ style={
1001
+ [
1002
+ [
1003
+ {
1004
+ "borderColor": undefined,
1005
+ "height": 128,
1006
+ },
1007
+ {
1008
+ "position": "absolute",
1009
+ "width": "100%",
1010
+ },
1011
+ ],
1012
+ {
1013
+ "bottom": 0,
1014
+ },
1015
+ {
1016
+ "borderTopWidth": undefined,
1017
+ },
1018
+ ]
1019
+ }
1020
+ >
1021
+ <ViewManagerAdapter_ExpoLinearGradient
1022
+ proxiedProperties={
1023
+ {
1024
+ "colors": [
1025
+ 871757818,
1026
+ 4294309882,
1027
+ ],
1028
+ "endPoint": undefined,
1029
+ "locations": undefined,
1030
+ "startPoint": undefined,
1031
+ }
1032
+ }
1033
+ style={
1034
+ {
1035
+ "flex": 1,
1036
+ }
1037
+ }
1038
+ />
1039
+ </View>
1040
+ </View>
1041
+ </View>
1042
+ <View>
1043
+ <Text
1044
+ style={
1045
+ [
1046
+ [
1047
+ {
1048
+ "fontFamily": "SourceSansPro",
1049
+ "fontSize": 38,
1050
+ "lineHeight": 47.8,
1051
+ },
1052
+ ],
1053
+ {
1054
+ "color": "#9AA5B1",
1055
+ "textAlign": "center",
1056
+ "width": "100%",
1057
+ },
1058
+ {
1059
+ "fontSize": 42,
1060
+ "fontWeight": "200",
1061
+ "lineHeight": 42,
1062
+ },
1063
+ ]
1064
+ }
1065
+ >
1066
+ :
1067
+ </Text>
1068
+ </View>
1069
+ <View
1070
+ style={
1071
+ {
1072
+ "alignItems": "center",
1073
+ "borderColor": "#E5E8EB",
1074
+ "borderRadius": 20,
1075
+ "borderStyle": "solid",
1076
+ "borderWidth": 1,
1077
+ "justifyContent": "center",
1078
+ "maxHeight": 72,
1079
+ "maxWidth": 72,
1080
+ "overflow": "hidden",
1081
+ }
1082
+ }
1083
+ >
1084
+ <View
1085
+ style={
1086
+ {
1087
+ "backgroundColor": "#F5F7FA",
1088
+ "height": 320,
1089
+ "width": 72,
1090
+ }
1091
+ }
1092
+ >
1093
+ <RCTScrollView
1094
+ data={
1095
+ [
1096
+ {
1097
+ "label": "",
1098
+ "value": null,
1099
+ },
1100
+ {
1101
+ "label": "",
1102
+ "value": null,
1103
+ },
1104
+ {
1105
+ "label": "--",
1106
+ "value": "--",
1107
+ },
1108
+ {
1109
+ "label": "00",
1110
+ "value": "00",
1111
+ },
1112
+ {
1113
+ "label": "01",
1114
+ "value": "01",
1115
+ },
1116
+ {
1117
+ "label": "02",
1118
+ "value": "02",
1119
+ },
1120
+ {
1121
+ "label": "03",
1122
+ "value": "03",
1123
+ },
1124
+ {
1125
+ "label": "04",
1126
+ "value": "04",
1127
+ },
1128
+ {
1129
+ "label": "05",
1130
+ "value": "05",
1131
+ },
1132
+ {
1133
+ "label": "06",
1134
+ "value": "06",
1135
+ },
1136
+ {
1137
+ "label": "07",
1138
+ "value": "07",
1139
+ },
1140
+ {
1141
+ "label": "08",
1142
+ "value": "08",
1143
+ },
1144
+ {
1145
+ "label": "09",
1146
+ "value": "09",
1147
+ },
1148
+ {
1149
+ "label": "10",
1150
+ "value": "10",
1151
+ },
1152
+ {
1153
+ "label": "11",
1154
+ "value": "11",
1155
+ },
1156
+ {
1157
+ "label": "12",
1158
+ "value": "12",
1159
+ },
1160
+ {
1161
+ "label": "13",
1162
+ "value": "13",
1163
+ },
1164
+ {
1165
+ "label": "14",
1166
+ "value": "14",
1167
+ },
1168
+ {
1169
+ "label": "15",
1170
+ "value": "15",
1171
+ },
1172
+ {
1173
+ "label": "16",
1174
+ "value": "16",
1175
+ },
1176
+ {
1177
+ "label": "17",
1178
+ "value": "17",
1179
+ },
1180
+ {
1181
+ "label": "18",
1182
+ "value": "18",
1183
+ },
1184
+ {
1185
+ "label": "19",
1186
+ "value": "19",
1187
+ },
1188
+ {
1189
+ "label": "20",
1190
+ "value": "20",
1191
+ },
1192
+ {
1193
+ "label": "21",
1194
+ "value": "21",
1195
+ },
1196
+ {
1197
+ "label": "22",
1198
+ "value": "22",
1199
+ },
1200
+ {
1201
+ "label": "23",
1202
+ "value": "23",
1203
+ },
1204
+ {
1205
+ "label": "24",
1206
+ "value": "24",
1207
+ },
1208
+ {
1209
+ "label": "25",
1210
+ "value": "25",
1211
+ },
1212
+ {
1213
+ "label": "26",
1214
+ "value": "26",
1215
+ },
1216
+ {
1217
+ "label": "27",
1218
+ "value": "27",
1219
+ },
1220
+ {
1221
+ "label": "28",
1222
+ "value": "28",
1223
+ },
1224
+ {
1225
+ "label": "29",
1226
+ "value": "29",
1227
+ },
1228
+ {
1229
+ "label": "30",
1230
+ "value": "30",
1231
+ },
1232
+ {
1233
+ "label": "31",
1234
+ "value": "31",
1235
+ },
1236
+ {
1237
+ "label": "32",
1238
+ "value": "32",
1239
+ },
1240
+ {
1241
+ "label": "33",
1242
+ "value": "33",
1243
+ },
1244
+ {
1245
+ "label": "34",
1246
+ "value": "34",
1247
+ },
1248
+ {
1249
+ "label": "35",
1250
+ "value": "35",
1251
+ },
1252
+ {
1253
+ "label": "36",
1254
+ "value": "36",
1255
+ },
1256
+ {
1257
+ "label": "37",
1258
+ "value": "37",
1259
+ },
1260
+ {
1261
+ "label": "38",
1262
+ "value": "38",
1263
+ },
1264
+ {
1265
+ "label": "39",
1266
+ "value": "39",
1267
+ },
1268
+ {
1269
+ "label": "40",
1270
+ "value": "40",
1271
+ },
1272
+ {
1273
+ "label": "41",
1274
+ "value": "41",
1275
+ },
1276
+ {
1277
+ "label": "42",
1278
+ "value": "42",
1279
+ },
1280
+ {
1281
+ "label": "43",
1282
+ "value": "43",
1283
+ },
1284
+ {
1285
+ "label": "44",
1286
+ "value": "44",
1287
+ },
1288
+ {
1289
+ "label": "45",
1290
+ "value": "45",
1291
+ },
1292
+ {
1293
+ "label": "46",
1294
+ "value": "46",
1295
+ },
1296
+ {
1297
+ "label": "47",
1298
+ "value": "47",
1299
+ },
1300
+ {
1301
+ "label": "48",
1302
+ "value": "48",
1303
+ },
1304
+ {
1305
+ "label": "49",
1306
+ "value": "49",
1307
+ },
1308
+ {
1309
+ "label": "50",
1310
+ "value": "50",
1311
+ },
1312
+ {
1313
+ "label": "51",
1314
+ "value": "51",
1315
+ },
1316
+ {
1317
+ "label": "52",
1318
+ "value": "52",
1319
+ },
1320
+ {
1321
+ "label": "53",
1322
+ "value": "53",
1323
+ },
1324
+ {
1325
+ "label": "54",
1326
+ "value": "54",
1327
+ },
1328
+ {
1329
+ "label": "55",
1330
+ "value": "55",
1331
+ },
1332
+ {
1333
+ "label": "56",
1334
+ "value": "56",
1335
+ },
1336
+ {
1337
+ "label": "57",
1338
+ "value": "57",
1339
+ },
1340
+ {
1341
+ "label": "58",
1342
+ "value": "58",
1343
+ },
1344
+ {
1345
+ "label": "59",
1346
+ "value": "59",
1347
+ },
1348
+ {
1349
+ "label": "",
1350
+ "value": null,
1351
+ },
1352
+ {
1353
+ "label": "",
1354
+ "value": null,
1355
+ },
1356
+ ]
1357
+ }
1358
+ getItem={[Function]}
1359
+ getItemCount={[Function]}
1360
+ getItemLayout={[Function]}
1361
+ initialScrollIndex={1}
1362
+ keyExtractor={[Function]}
1363
+ onContentSizeChange={[Function]}
1364
+ onLayout={[Function]}
1365
+ onMomentumScrollBegin={[Function]}
1366
+ onMomentumScrollEnd={[Function]}
1367
+ onScroll={[Function]}
1368
+ onScrollBeginDrag={[Function]}
1369
+ onScrollEndDrag={[Function]}
1370
+ onTouchStart={[Function]}
1371
+ removeClippedSubviews={false}
1372
+ renderItem={[Function]}
1373
+ scrollEventThrottle={50}
1374
+ showsVerticalScrollIndicator={false}
1375
+ snapToInterval={64}
1376
+ stickyHeaderIndices={[]}
1377
+ viewabilityConfigCallbackPairs={[]}
1378
+ >
1379
+ <View>
1380
+ <View
1381
+ style={
1382
+ {
1383
+ "height": 64,
1384
+ }
1385
+ }
1386
+ />
1387
+ <View
1388
+ onFocusCapture={[Function]}
1389
+ style={null}
1390
+ >
1391
+ <View
1392
+ accessibilityState={
1393
+ {
1394
+ "busy": undefined,
1395
+ "checked": undefined,
1396
+ "disabled": undefined,
1397
+ "expanded": undefined,
1398
+ "selected": undefined,
1399
+ }
1400
+ }
1401
+ accessibilityValue={
1402
+ {
1403
+ "max": undefined,
1404
+ "min": undefined,
1405
+ "now": undefined,
1406
+ "text": undefined,
1407
+ }
1408
+ }
1409
+ accessible={true}
1410
+ collapsable={false}
1411
+ focusable={true}
1412
+ onClick={[Function]}
1413
+ onResponderGrant={[Function]}
1414
+ onResponderMove={[Function]}
1415
+ onResponderRelease={[Function]}
1416
+ onResponderTerminate={[Function]}
1417
+ onResponderTerminationRequest={[Function]}
1418
+ onStartShouldSetResponder={[Function]}
1419
+ style={
1420
+ {
1421
+ "opacity": 1,
1422
+ }
1423
+ }
1424
+ >
1425
+ <View
1426
+ style={
1427
+ {
1428
+ "alignItems": "center",
1429
+ "backgroundColor": "#F5F7FA",
1430
+ "fontSize": 32,
1431
+ "height": 64,
1432
+ "justifyContent": "center",
1433
+ }
1434
+ }
1435
+ >
1436
+ <Text
1437
+ style={
1438
+ [
1439
+ [
1440
+ {
1441
+ "fontFamily": "SourceSansPro",
1442
+ "fontSize": 38,
1443
+ "lineHeight": 47.8,
1444
+ },
1445
+ ],
1446
+ {
1447
+ "color": "#9AA5B1",
1448
+ "textAlign": "center",
1449
+ "width": "100%",
1450
+ },
1451
+ {
1452
+ "fontSize": 42,
1453
+ "fontWeight": "200",
1454
+ },
1455
+ ]
1456
+ }
1457
+ />
1458
+ </View>
1459
+ </View>
1460
+ </View>
1461
+ <View
1462
+ onFocusCapture={[Function]}
1463
+ style={null}
1464
+ >
1465
+ <View
1466
+ accessibilityState={
1467
+ {
1468
+ "busy": undefined,
1469
+ "checked": undefined,
1470
+ "disabled": undefined,
1471
+ "expanded": undefined,
1472
+ "selected": undefined,
1473
+ }
1474
+ }
1475
+ accessibilityValue={
1476
+ {
1477
+ "max": undefined,
1478
+ "min": undefined,
1479
+ "now": undefined,
1480
+ "text": undefined,
1481
+ }
1482
+ }
1483
+ accessible={true}
1484
+ collapsable={false}
1485
+ focusable={true}
1486
+ onClick={[Function]}
1487
+ onResponderGrant={[Function]}
1488
+ onResponderMove={[Function]}
1489
+ onResponderRelease={[Function]}
1490
+ onResponderTerminate={[Function]}
1491
+ onResponderTerminationRequest={[Function]}
1492
+ onStartShouldSetResponder={[Function]}
1493
+ style={
1494
+ {
1495
+ "opacity": 1,
1496
+ }
1497
+ }
1498
+ >
1499
+ <View
1500
+ style={
1501
+ {
1502
+ "alignItems": "center",
1503
+ "backgroundColor": "#F5F7FA",
1504
+ "fontSize": 32,
1505
+ "height": 64,
1506
+ "justifyContent": "center",
1507
+ }
1508
+ }
1509
+ >
1510
+ <Text
1511
+ style={
1512
+ [
1513
+ [
1514
+ {
1515
+ "fontFamily": "SourceSansPro",
1516
+ "fontSize": 38,
1517
+ "lineHeight": 47.8,
1518
+ },
1519
+ ],
1520
+ {
1521
+ "color": "#9AA5B1",
1522
+ "textAlign": "center",
1523
+ "width": "100%",
1524
+ },
1525
+ {
1526
+ "fontSize": 42,
1527
+ "fontWeight": "200",
1528
+ },
1529
+ ]
1530
+ }
1531
+ >
1532
+ --
1533
+ </Text>
1534
+ </View>
1535
+ </View>
1536
+ </View>
1537
+ <View
1538
+ onFocusCapture={[Function]}
1539
+ style={null}
1540
+ >
1541
+ <View
1542
+ accessibilityState={
1543
+ {
1544
+ "busy": undefined,
1545
+ "checked": undefined,
1546
+ "disabled": undefined,
1547
+ "expanded": undefined,
1548
+ "selected": undefined,
1549
+ }
1550
+ }
1551
+ accessibilityValue={
1552
+ {
1553
+ "max": undefined,
1554
+ "min": undefined,
1555
+ "now": undefined,
1556
+ "text": undefined,
1557
+ }
1558
+ }
1559
+ accessible={true}
1560
+ collapsable={false}
1561
+ focusable={true}
1562
+ onClick={[Function]}
1563
+ onResponderGrant={[Function]}
1564
+ onResponderMove={[Function]}
1565
+ onResponderRelease={[Function]}
1566
+ onResponderTerminate={[Function]}
1567
+ onResponderTerminationRequest={[Function]}
1568
+ onStartShouldSetResponder={[Function]}
1569
+ style={
1570
+ {
1571
+ "opacity": 1,
1572
+ }
1573
+ }
1574
+ >
1575
+ <View
1576
+ style={
1577
+ {
1578
+ "alignItems": "center",
1579
+ "backgroundColor": "#F5F7FA",
1580
+ "fontSize": 32,
1581
+ "height": 64,
1582
+ "justifyContent": "center",
1583
+ }
1584
+ }
1585
+ >
1586
+ <Text
1587
+ style={
1588
+ [
1589
+ [
1590
+ {
1591
+ "fontFamily": "SourceSansPro",
1592
+ "fontSize": 38,
1593
+ "lineHeight": 47.8,
1594
+ },
1595
+ ],
1596
+ {
1597
+ "color": "#9AA5B1",
1598
+ "textAlign": "center",
1599
+ "width": "100%",
1600
+ },
1601
+ {
1602
+ "fontSize": 42,
1603
+ "fontWeight": "200",
1604
+ },
1605
+ ]
1606
+ }
1607
+ >
1608
+ 00
1609
+ </Text>
1610
+ </View>
1611
+ </View>
1612
+ </View>
1613
+ <View
1614
+ onFocusCapture={[Function]}
1615
+ style={null}
1616
+ >
1617
+ <View
1618
+ accessibilityState={
1619
+ {
1620
+ "busy": undefined,
1621
+ "checked": undefined,
1622
+ "disabled": undefined,
1623
+ "expanded": undefined,
1624
+ "selected": undefined,
1625
+ }
1626
+ }
1627
+ accessibilityValue={
1628
+ {
1629
+ "max": undefined,
1630
+ "min": undefined,
1631
+ "now": undefined,
1632
+ "text": undefined,
1633
+ }
1634
+ }
1635
+ accessible={true}
1636
+ collapsable={false}
1637
+ focusable={true}
1638
+ onClick={[Function]}
1639
+ onResponderGrant={[Function]}
1640
+ onResponderMove={[Function]}
1641
+ onResponderRelease={[Function]}
1642
+ onResponderTerminate={[Function]}
1643
+ onResponderTerminationRequest={[Function]}
1644
+ onStartShouldSetResponder={[Function]}
1645
+ style={
1646
+ {
1647
+ "opacity": 1,
1648
+ }
1649
+ }
1650
+ >
1651
+ <View
1652
+ style={
1653
+ {
1654
+ "alignItems": "center",
1655
+ "backgroundColor": "#F5F7FA",
1656
+ "fontSize": 32,
1657
+ "height": 64,
1658
+ "justifyContent": "center",
1659
+ }
1660
+ }
1661
+ >
1662
+ <Text
1663
+ style={
1664
+ [
1665
+ [
1666
+ {
1667
+ "fontFamily": "SourceSansPro",
1668
+ "fontSize": 38,
1669
+ "lineHeight": 47.8,
1670
+ },
1671
+ ],
1672
+ {
1673
+ "color": "#9AA5B1",
1674
+ "textAlign": "center",
1675
+ "width": "100%",
1676
+ },
1677
+ {
1678
+ "fontSize": 42,
1679
+ "fontWeight": "200",
1680
+ },
1681
+ ]
1682
+ }
1683
+ >
1684
+ 01
1685
+ </Text>
1686
+ </View>
1687
+ </View>
1688
+ </View>
1689
+ <View
1690
+ onFocusCapture={[Function]}
1691
+ style={null}
1692
+ >
1693
+ <View
1694
+ accessibilityState={
1695
+ {
1696
+ "busy": undefined,
1697
+ "checked": undefined,
1698
+ "disabled": undefined,
1699
+ "expanded": undefined,
1700
+ "selected": undefined,
1701
+ }
1702
+ }
1703
+ accessibilityValue={
1704
+ {
1705
+ "max": undefined,
1706
+ "min": undefined,
1707
+ "now": undefined,
1708
+ "text": undefined,
1709
+ }
1710
+ }
1711
+ accessible={true}
1712
+ collapsable={false}
1713
+ focusable={true}
1714
+ onClick={[Function]}
1715
+ onResponderGrant={[Function]}
1716
+ onResponderMove={[Function]}
1717
+ onResponderRelease={[Function]}
1718
+ onResponderTerminate={[Function]}
1719
+ onResponderTerminationRequest={[Function]}
1720
+ onStartShouldSetResponder={[Function]}
1721
+ style={
1722
+ {
1723
+ "opacity": 1,
1724
+ }
1725
+ }
1726
+ >
1727
+ <View
1728
+ style={
1729
+ {
1730
+ "alignItems": "center",
1731
+ "backgroundColor": "#F5F7FA",
1732
+ "fontSize": 32,
1733
+ "height": 64,
1734
+ "justifyContent": "center",
1735
+ }
1736
+ }
1737
+ >
1738
+ <Text
1739
+ style={
1740
+ [
1741
+ [
1742
+ {
1743
+ "fontFamily": "SourceSansPro",
1744
+ "fontSize": 38,
1745
+ "lineHeight": 47.8,
1746
+ },
1747
+ ],
1748
+ {
1749
+ "color": "#9AA5B1",
1750
+ "textAlign": "center",
1751
+ "width": "100%",
1752
+ },
1753
+ {
1754
+ "fontSize": 42,
1755
+ "fontWeight": "200",
1756
+ },
1757
+ ]
1758
+ }
1759
+ >
1760
+ 02
1761
+ </Text>
1762
+ </View>
1763
+ </View>
1764
+ </View>
1765
+ <View
1766
+ onFocusCapture={[Function]}
1767
+ style={null}
1768
+ >
1769
+ <View
1770
+ accessibilityState={
1771
+ {
1772
+ "busy": undefined,
1773
+ "checked": undefined,
1774
+ "disabled": undefined,
1775
+ "expanded": undefined,
1776
+ "selected": undefined,
1777
+ }
1778
+ }
1779
+ accessibilityValue={
1780
+ {
1781
+ "max": undefined,
1782
+ "min": undefined,
1783
+ "now": undefined,
1784
+ "text": undefined,
1785
+ }
1786
+ }
1787
+ accessible={true}
1788
+ collapsable={false}
1789
+ focusable={true}
1790
+ onClick={[Function]}
1791
+ onResponderGrant={[Function]}
1792
+ onResponderMove={[Function]}
1793
+ onResponderRelease={[Function]}
1794
+ onResponderTerminate={[Function]}
1795
+ onResponderTerminationRequest={[Function]}
1796
+ onStartShouldSetResponder={[Function]}
1797
+ style={
1798
+ {
1799
+ "opacity": 1,
1800
+ }
1801
+ }
1802
+ >
1803
+ <View
1804
+ style={
1805
+ {
1806
+ "alignItems": "center",
1807
+ "backgroundColor": "#F5F7FA",
1808
+ "fontSize": 32,
1809
+ "height": 64,
1810
+ "justifyContent": "center",
1811
+ }
1812
+ }
1813
+ >
1814
+ <Text
1815
+ style={
1816
+ [
1817
+ [
1818
+ {
1819
+ "fontFamily": "SourceSansPro",
1820
+ "fontSize": 38,
1821
+ "lineHeight": 47.8,
1822
+ },
1823
+ ],
1824
+ {
1825
+ "color": "#9AA5B1",
1826
+ "textAlign": "center",
1827
+ "width": "100%",
1828
+ },
1829
+ {
1830
+ "fontSize": 42,
1831
+ "fontWeight": "200",
1832
+ },
1833
+ ]
1834
+ }
1835
+ >
1836
+ 03
1837
+ </Text>
1838
+ </View>
1839
+ </View>
1840
+ </View>
1841
+ <View
1842
+ onFocusCapture={[Function]}
1843
+ style={null}
1844
+ >
1845
+ <View
1846
+ accessibilityState={
1847
+ {
1848
+ "busy": undefined,
1849
+ "checked": undefined,
1850
+ "disabled": undefined,
1851
+ "expanded": undefined,
1852
+ "selected": undefined,
1853
+ }
1854
+ }
1855
+ accessibilityValue={
1856
+ {
1857
+ "max": undefined,
1858
+ "min": undefined,
1859
+ "now": undefined,
1860
+ "text": undefined,
1861
+ }
1862
+ }
1863
+ accessible={true}
1864
+ collapsable={false}
1865
+ focusable={true}
1866
+ onClick={[Function]}
1867
+ onResponderGrant={[Function]}
1868
+ onResponderMove={[Function]}
1869
+ onResponderRelease={[Function]}
1870
+ onResponderTerminate={[Function]}
1871
+ onResponderTerminationRequest={[Function]}
1872
+ onStartShouldSetResponder={[Function]}
1873
+ style={
1874
+ {
1875
+ "opacity": 1,
1876
+ }
1877
+ }
1878
+ >
1879
+ <View
1880
+ style={
1881
+ {
1882
+ "alignItems": "center",
1883
+ "backgroundColor": "#F5F7FA",
1884
+ "fontSize": 32,
1885
+ "height": 64,
1886
+ "justifyContent": "center",
1887
+ }
1888
+ }
1889
+ >
1890
+ <Text
1891
+ style={
1892
+ [
1893
+ [
1894
+ {
1895
+ "fontFamily": "SourceSansPro",
1896
+ "fontSize": 38,
1897
+ "lineHeight": 47.8,
1898
+ },
1899
+ ],
1900
+ {
1901
+ "color": "#9AA5B1",
1902
+ "textAlign": "center",
1903
+ "width": "100%",
1904
+ },
1905
+ {
1906
+ "fontSize": 42,
1907
+ "fontWeight": "200",
1908
+ },
1909
+ ]
1910
+ }
1911
+ >
1912
+ 04
1913
+ </Text>
1914
+ </View>
1915
+ </View>
1916
+ </View>
1917
+ <View
1918
+ onFocusCapture={[Function]}
1919
+ style={null}
1920
+ >
1921
+ <View
1922
+ accessibilityState={
1923
+ {
1924
+ "busy": undefined,
1925
+ "checked": undefined,
1926
+ "disabled": undefined,
1927
+ "expanded": undefined,
1928
+ "selected": undefined,
1929
+ }
1930
+ }
1931
+ accessibilityValue={
1932
+ {
1933
+ "max": undefined,
1934
+ "min": undefined,
1935
+ "now": undefined,
1936
+ "text": undefined,
1937
+ }
1938
+ }
1939
+ accessible={true}
1940
+ collapsable={false}
1941
+ focusable={true}
1942
+ onClick={[Function]}
1943
+ onResponderGrant={[Function]}
1944
+ onResponderMove={[Function]}
1945
+ onResponderRelease={[Function]}
1946
+ onResponderTerminate={[Function]}
1947
+ onResponderTerminationRequest={[Function]}
1948
+ onStartShouldSetResponder={[Function]}
1949
+ style={
1950
+ {
1951
+ "opacity": 1,
1952
+ }
1953
+ }
1954
+ >
1955
+ <View
1956
+ style={
1957
+ {
1958
+ "alignItems": "center",
1959
+ "backgroundColor": "#F5F7FA",
1960
+ "fontSize": 32,
1961
+ "height": 64,
1962
+ "justifyContent": "center",
1963
+ }
1964
+ }
1965
+ >
1966
+ <Text
1967
+ style={
1968
+ [
1969
+ [
1970
+ {
1971
+ "fontFamily": "SourceSansPro",
1972
+ "fontSize": 38,
1973
+ "lineHeight": 47.8,
1974
+ },
1975
+ ],
1976
+ {
1977
+ "color": "#9AA5B1",
1978
+ "textAlign": "center",
1979
+ "width": "100%",
1980
+ },
1981
+ {
1982
+ "fontSize": 42,
1983
+ "fontWeight": "200",
1984
+ },
1985
+ ]
1986
+ }
1987
+ >
1988
+ 05
1989
+ </Text>
1990
+ </View>
1991
+ </View>
1992
+ </View>
1993
+ <View
1994
+ onFocusCapture={[Function]}
1995
+ style={null}
1996
+ >
1997
+ <View
1998
+ accessibilityState={
1999
+ {
2000
+ "busy": undefined,
2001
+ "checked": undefined,
2002
+ "disabled": undefined,
2003
+ "expanded": undefined,
2004
+ "selected": undefined,
2005
+ }
2006
+ }
2007
+ accessibilityValue={
2008
+ {
2009
+ "max": undefined,
2010
+ "min": undefined,
2011
+ "now": undefined,
2012
+ "text": undefined,
2013
+ }
2014
+ }
2015
+ accessible={true}
2016
+ collapsable={false}
2017
+ focusable={true}
2018
+ onClick={[Function]}
2019
+ onResponderGrant={[Function]}
2020
+ onResponderMove={[Function]}
2021
+ onResponderRelease={[Function]}
2022
+ onResponderTerminate={[Function]}
2023
+ onResponderTerminationRequest={[Function]}
2024
+ onStartShouldSetResponder={[Function]}
2025
+ style={
2026
+ {
2027
+ "opacity": 1,
2028
+ }
2029
+ }
2030
+ >
2031
+ <View
2032
+ style={
2033
+ {
2034
+ "alignItems": "center",
2035
+ "backgroundColor": "#F5F7FA",
2036
+ "fontSize": 32,
2037
+ "height": 64,
2038
+ "justifyContent": "center",
2039
+ }
2040
+ }
2041
+ >
2042
+ <Text
2043
+ style={
2044
+ [
2045
+ [
2046
+ {
2047
+ "fontFamily": "SourceSansPro",
2048
+ "fontSize": 38,
2049
+ "lineHeight": 47.8,
2050
+ },
2051
+ ],
2052
+ {
2053
+ "color": "#9AA5B1",
2054
+ "textAlign": "center",
2055
+ "width": "100%",
2056
+ },
2057
+ {
2058
+ "fontSize": 42,
2059
+ "fontWeight": "200",
2060
+ },
2061
+ ]
2062
+ }
2063
+ >
2064
+ 06
2065
+ </Text>
2066
+ </View>
2067
+ </View>
2068
+ </View>
2069
+ <View
2070
+ onFocusCapture={[Function]}
2071
+ style={null}
2072
+ >
2073
+ <View
2074
+ accessibilityState={
2075
+ {
2076
+ "busy": undefined,
2077
+ "checked": undefined,
2078
+ "disabled": undefined,
2079
+ "expanded": undefined,
2080
+ "selected": undefined,
2081
+ }
2082
+ }
2083
+ accessibilityValue={
2084
+ {
2085
+ "max": undefined,
2086
+ "min": undefined,
2087
+ "now": undefined,
2088
+ "text": undefined,
2089
+ }
2090
+ }
2091
+ accessible={true}
2092
+ collapsable={false}
2093
+ focusable={true}
2094
+ onClick={[Function]}
2095
+ onResponderGrant={[Function]}
2096
+ onResponderMove={[Function]}
2097
+ onResponderRelease={[Function]}
2098
+ onResponderTerminate={[Function]}
2099
+ onResponderTerminationRequest={[Function]}
2100
+ onStartShouldSetResponder={[Function]}
2101
+ style={
2102
+ {
2103
+ "opacity": 1,
2104
+ }
2105
+ }
2106
+ >
2107
+ <View
2108
+ style={
2109
+ {
2110
+ "alignItems": "center",
2111
+ "backgroundColor": "#F5F7FA",
2112
+ "fontSize": 32,
2113
+ "height": 64,
2114
+ "justifyContent": "center",
2115
+ }
2116
+ }
2117
+ >
2118
+ <Text
2119
+ style={
2120
+ [
2121
+ [
2122
+ {
2123
+ "fontFamily": "SourceSansPro",
2124
+ "fontSize": 38,
2125
+ "lineHeight": 47.8,
2126
+ },
2127
+ ],
2128
+ {
2129
+ "color": "#9AA5B1",
2130
+ "textAlign": "center",
2131
+ "width": "100%",
2132
+ },
2133
+ {
2134
+ "fontSize": 42,
2135
+ "fontWeight": "200",
2136
+ },
2137
+ ]
2138
+ }
2139
+ >
2140
+ 07
2141
+ </Text>
2142
+ </View>
2143
+ </View>
2144
+ </View>
2145
+ <View
2146
+ style={
2147
+ {
2148
+ "height": 3456,
2149
+ }
2150
+ }
2151
+ />
2152
+ </View>
2153
+ </RCTScrollView>
2154
+ <View
2155
+ pointerEvents="none"
2156
+ style={
2157
+ [
2158
+ [
2159
+ {
2160
+ "borderColor": undefined,
2161
+ "height": 128,
2162
+ },
2163
+ {
2164
+ "position": "absolute",
2165
+ "width": "100%",
2166
+ },
2167
+ ],
2168
+ {
2169
+ "top": 0,
2170
+ },
2171
+ {
2172
+ "borderBottomWidth": undefined,
2173
+ },
2174
+ ]
2175
+ }
2176
+ >
2177
+ <ViewManagerAdapter_ExpoLinearGradient
2178
+ proxiedProperties={
2179
+ {
2180
+ "colors": [
2181
+ 4294309882,
2182
+ 871757818,
2183
+ ],
2184
+ "endPoint": undefined,
2185
+ "locations": undefined,
2186
+ "startPoint": undefined,
2187
+ }
2188
+ }
2189
+ style={
2190
+ {
2191
+ "flex": 1,
2192
+ }
2193
+ }
2194
+ />
2195
+ </View>
2196
+ <View
2197
+ pointerEvents="none"
2198
+ style={
2199
+ [
2200
+ [
2201
+ {
2202
+ "borderColor": undefined,
2203
+ "height": 128,
2204
+ },
2205
+ {
2206
+ "position": "absolute",
2207
+ "width": "100%",
2208
+ },
2209
+ ],
2210
+ {
2211
+ "bottom": 0,
2212
+ },
2213
+ {
2214
+ "borderTopWidth": undefined,
2215
+ },
2216
+ ]
2217
+ }
2218
+ >
2219
+ <ViewManagerAdapter_ExpoLinearGradient
2220
+ proxiedProperties={
2221
+ {
2222
+ "colors": [
2223
+ 871757818,
2224
+ 4294309882,
2225
+ ],
2226
+ "endPoint": undefined,
2227
+ "locations": undefined,
2228
+ "startPoint": undefined,
2229
+ }
2230
+ }
2231
+ style={
2232
+ {
2233
+ "flex": 1,
2234
+ }
2235
+ }
2236
+ />
2237
+ </View>
2238
+ </View>
2239
+ </View>
2240
+ </View>
2241
+ `;