@lookiero/checkout 6.4.0 → 6.5.0-beta.0
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/public/public/assets/adaptive-icon.png +0 -0
- package/dist/public/public/assets/favicon.png +0 -0
- package/dist/public/public/assets/icon.png +0 -0
- package/dist/public/public/assets/splash.png +0 -0
- package/dist/public/public/images/not-found.png +0 -0
- package/dist/src/ExpoRoot.js +1 -1
- package/dist/src/infrastructure/ui/Root.d.ts +1 -1
- package/dist/src/infrastructure/ui/components/templates/header/Header.js +3 -6
- package/dist/src/infrastructure/ui/components/templates/header/Header.style.d.ts +3 -2
- package/dist/src/infrastructure/ui/components/templates/header/Header.style.js +4 -3
- package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.js +6 -7
- package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.style.d.ts +2 -1
- package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.style.js +2 -1
- package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.js +2 -1
- package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.style.d.ts +8 -0
- package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.style.js +11 -0
- package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.js +2 -1
- package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.style.d.ts +8 -0
- package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.style.js +11 -0
- package/dist/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.style.d.ts +1 -0
- package/dist/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.style.js +1 -0
- package/dist/src/infrastructure/ui/routing/Routing.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/checkout/Checkout.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/checkout/Checkout.js +9 -9
- package/dist/src/infrastructure/ui/views/checkout/Checkout.style.d.ts +5 -18
- package/dist/src/infrastructure/ui/views/checkout/Checkout.style.js +7 -21
- package/dist/src/infrastructure/ui/views/feedback/Feedback.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/feedback/Feedback.js +2 -1
- package/dist/src/infrastructure/ui/views/feedback/Feedback.style.d.ts +0 -3
- package/dist/src/infrastructure/ui/views/feedback/Feedback.style.js +0 -4
- package/dist/src/infrastructure/ui/views/item/Item.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/item/Item.js +4 -4
- package/dist/src/infrastructure/ui/views/item/Item.style.d.ts +4 -4
- package/dist/src/infrastructure/ui/views/item/Item.style.js +5 -6
- package/dist/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.js +3 -4
- package/dist/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.style.d.ts +1 -0
- package/dist/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.style.js +1 -0
- package/dist/src/infrastructure/ui/views/return/Return.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/return/Return.js +0 -1
- package/dist/src/infrastructure/ui/views/return/Return.style.d.ts +0 -3
- package/dist/src/infrastructure/ui/views/return/Return.style.js +1 -5
- package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.style.js +2 -2
- package/dist/src/infrastructure/ui/views/summary/Summary.d.ts +1 -1
- package/dist/src/infrastructure/ui/views/summary/Summary.js +20 -18
- package/dist/src/infrastructure/ui/views/summary/Summary.style.d.ts +4 -4
- package/dist/src/infrastructure/ui/views/summary/Summary.style.js +7 -8
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.d.ts +13 -0
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.js +33 -0
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.style.d.ts +18 -0
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.style.js +21 -0
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.d.ts +2 -14
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.js +15 -28
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.style.d.ts +0 -15
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.style.js +1 -16
- package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.d.ts +0 -1
- package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.js +2 -2
- package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.js +6 -2
- package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.style.d.ts +10 -1
- package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.style.js +13 -4
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
- package/src/ExpoRoot.tsx +1 -1
- package/src/infrastructure/ui/Root.tsx +1 -1
- package/src/infrastructure/ui/components/templates/header/Header.style.ts +4 -3
- package/src/infrastructure/ui/components/templates/header/Header.tsx +7 -11
- package/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.style.ts +2 -1
- package/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.tsx +10 -11
- package/src/infrastructure/ui/{views/summary/components/stickyPricing/StickyPricing.style.ts → components/templates/header/defaultHeader/DefaultHeader.style.ts} +5 -4
- package/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.tsx +2 -1
- package/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.style.ts +14 -0
- package/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.tsx +2 -1
- package/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.style.ts +1 -0
- package/src/infrastructure/ui/routing/Routing.tsx +1 -1
- package/src/infrastructure/ui/views/checkout/Checkout.style.ts +7 -21
- package/src/infrastructure/ui/views/checkout/Checkout.tsx +13 -22
- package/src/infrastructure/ui/views/feedback/Feedback.style.ts +0 -4
- package/src/infrastructure/ui/views/feedback/Feedback.tsx +3 -2
- package/src/infrastructure/ui/views/item/Item.style.ts +5 -6
- package/src/infrastructure/ui/views/item/Item.tsx +21 -21
- package/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.style.ts +1 -0
- package/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.tsx +11 -13
- package/src/infrastructure/ui/views/return/Return.style.ts +1 -5
- package/src/infrastructure/ui/views/return/Return.tsx +1 -2
- package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.style.ts +2 -1
- package/src/infrastructure/ui/views/summary/Summary.style.ts +8 -7
- package/src/infrastructure/ui/views/summary/Summary.tsx +52 -55
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.style.ts +24 -0
- package/src/infrastructure/ui/views/summary/components/{pricing/Pricing.test.tsx → collapsiblePricing/CollapsiblePricing.test.tsx} +2 -7
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx +81 -0
- package/src/infrastructure/ui/views/summary/components/pricing/Pricing.style.ts +1 -16
- package/src/infrastructure/ui/views/summary/components/pricing/Pricing.tsx +34 -94
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.style.ts +13 -4
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.tsx +6 -2
- package/src/infrastructure/ui/components/layouts/layout/Layout.ts +0 -25
- package/src/infrastructure/ui/components/layouts/layout/components/footer/Footer.test.tsx +0 -40
- package/src/infrastructure/ui/components/layouts/layout/components/footer/Footer.tsx +0 -9
- package/src/infrastructure/ui/components/layouts/layout/components/footer/__snapshots__/Footer.test.tsx.snap +0 -36
- package/src/infrastructure/ui/components/layouts/layout/components/header/Header.style.ts +0 -21
- package/src/infrastructure/ui/components/layouts/layout/components/header/Header.test.tsx +0 -26
- package/src/infrastructure/ui/components/layouts/layout/components/header/Header.tsx +0 -10
- package/src/infrastructure/ui/components/layouts/layout/components/header/__snapshots__/Header.test.tsx.snap +0 -45
- package/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.style.ts +0 -15
- package/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.test.tsx +0 -66
- package/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.tsx +0 -45
- package/src/infrastructure/ui/components/layouts/layout/dummyLayout/__snapshots__/DummyLayout.test.tsx.snap +0 -1349
- package/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.tsx +0 -46
- /package/src/infrastructure/ui/views/summary/components/{pricing → collapsiblePricing}/__snapshots__/Pricing.test.tsx.snap +0 -0
|
@@ -1,1349 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`DummyLayout component matches the snapshot 1`] = `
|
|
4
|
-
<View
|
|
5
|
-
style={
|
|
6
|
-
[
|
|
7
|
-
{
|
|
8
|
-
"backgroundColor": "#FFFFFF",
|
|
9
|
-
"flex": 1,
|
|
10
|
-
},
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
>
|
|
14
|
-
<View
|
|
15
|
-
style={
|
|
16
|
-
[
|
|
17
|
-
{
|
|
18
|
-
"alignSelf": "center",
|
|
19
|
-
"left": 0,
|
|
20
|
-
"marginHorizontal": "auto",
|
|
21
|
-
"position": "absolute",
|
|
22
|
-
"right": 0,
|
|
23
|
-
"top": 0,
|
|
24
|
-
"width": "100%",
|
|
25
|
-
"zIndex": 5,
|
|
26
|
-
},
|
|
27
|
-
]
|
|
28
|
-
}
|
|
29
|
-
>
|
|
30
|
-
<RCTSafeAreaView />
|
|
31
|
-
</View>
|
|
32
|
-
<View
|
|
33
|
-
style={
|
|
34
|
-
{
|
|
35
|
-
"flex": 1,
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
>
|
|
39
|
-
<RCTScrollView
|
|
40
|
-
collapsable={false}
|
|
41
|
-
contentContainerStyle={
|
|
42
|
-
[
|
|
43
|
-
{
|
|
44
|
-
"flexGrow": 1,
|
|
45
|
-
},
|
|
46
|
-
undefined,
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
handlerTag={1}
|
|
50
|
-
handlerType="NativeViewGestureHandler"
|
|
51
|
-
onGestureHandlerEvent={[Function]}
|
|
52
|
-
onGestureHandlerStateChange={[Function]}
|
|
53
|
-
scrollEventThrottle={16}
|
|
54
|
-
showsVerticalScrollIndicator={false}
|
|
55
|
-
stickyHeaderIndices={
|
|
56
|
-
[
|
|
57
|
-
0,
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
waitFor={
|
|
61
|
-
[
|
|
62
|
-
{
|
|
63
|
-
"current": null,
|
|
64
|
-
},
|
|
65
|
-
]
|
|
66
|
-
}
|
|
67
|
-
>
|
|
68
|
-
<View>
|
|
69
|
-
<View
|
|
70
|
-
style={
|
|
71
|
-
{
|
|
72
|
-
"height": 48,
|
|
73
|
-
"position": "relative",
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
>
|
|
77
|
-
<View
|
|
78
|
-
style={
|
|
79
|
-
[
|
|
80
|
-
{
|
|
81
|
-
"alignItems": "center",
|
|
82
|
-
"backgroundColor": "#FFFFFF",
|
|
83
|
-
"flexDirection": "row",
|
|
84
|
-
"flexGrow": 0,
|
|
85
|
-
"flexWrap": "nowrap",
|
|
86
|
-
"justifyContent": "space-between",
|
|
87
|
-
"overflow": "visible",
|
|
88
|
-
"paddingHorizontal": 8,
|
|
89
|
-
"width": "100%",
|
|
90
|
-
},
|
|
91
|
-
undefined,
|
|
92
|
-
]
|
|
93
|
-
}
|
|
94
|
-
testID="default-header"
|
|
95
|
-
>
|
|
96
|
-
<Image
|
|
97
|
-
resizeMode="cover"
|
|
98
|
-
source={
|
|
99
|
-
{
|
|
100
|
-
"uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAhcAAADACAYAAAC3fUH2AAAeQ0lEQVR4Ae3dXXIT17bA8RWwc3DMOVd5oOqYQKUzgpgRRIwgMIKIEcSMADOChBFgRgAZAcoIcJ7uvU/oFDlwqngIqeAkYEPuWmaL28gtdffeq1vd8v9XpZhYsq1ude+99tpfIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP10ViCXL1++9ve///2/9bF9/vz5Vy9fvvwfATrss88+e/iPf/xjVx/Z5ubm/+o1+0IAoCPOCOTs2bNj+/rRRx9dO3PmzH0tuB/rYyRAR/31118/6pdMHzt6/dr1evef//xnJgDQAR8JjllLUL8MZ749efPmzdX//Oc/EwE6xAIJCypmv69Bx+7Tp09vCwAsEZmLILQEZ1kB/mhra2tHgA4JAe+JrhDNvu1a5o0sBoBlIrgINIjYn/PUQLtKvrt48eItATpEA4nxnKcsKH5IgAFgWQgugsPDw/1Fz1uLkAwGukSzbf9a8PSpCTDsGC9cuLBtDwIqoBsYc5Gj6eRf9Mtg0Ws0yLj6888/jwVYsjDo+G7Jy/YPDg6uvlCyIvS4tzWw+toGYOv/bs952Vgf9968eTNmzBTQPjIXOVpgvajwmvu0jtAFWnFOKrxse3NzcyW69Abq0qVL9/WfjyyTKPMDCzPUx10b9EqXJtA+goucM2fO7Fd42UALrLLWItCGScXX7WilPJQes4Beg6RHGtxfq/mj00Gujyw4EQCtILjI0ZbgrxVfOtza2qpdyAGezp07V7mrQyvlu32uXG38iLxb1yPW9ieffEKjAGgJwUWOtnAmVV9rM0hoCWGZJpOJBRdVA4xMK9deDkgOY0sySWRjNPqewQH6guAiRwufOoPeeltYY3VUGSc0pdf3tz0NiL8RJ5qd3BYAjSO4+FCtEfVWWAuwRDUD4sFpD4g145gJgMYRXORowVN3ut6ANCuWbOUD4poBVJkqg7YBJCK4yDk8PKxdiGlammluWJq3b9/+q+aP9C4g1uDinjixdS8EQOMILnLOnj0b00IaMrATfdK3gPjJkycP5N2iWEk0SLnNglpAOwgucrRVE5V+3djYGAmwBBFdeWa7bwHx+vr6dQ0OHkgkCyx+/vnnXQHQCoILB1rAfy3AEtSZLZIzOH/+fK9mTdi0Ww0Orus/b+gxT2r86Dgs2b8rAFqzJvBw3BJcpf0bsNrCSpdj6Zl///vfe/plz/YX0a9DDRy+0mOZzcJM9PGTZjseaFAyEQCtY+OyGVpo/SUR2NAMy3Dx4sVdvfZixlBMtKL+QgCgAXSLOHn79u1QgJYlTNPMGIgMoCkEF04sPStA+6K74jY2NoYCAA1gzIWflV9W2Fq62o+dra2tZfl+bms928DCP//8c38Vx53MO241sRlGh4eHkz4e95kzZ4b6JXoGBtBltpOuvNuTJpt56vi+ff78OQuqNYjgws9ga2vr82fPntVd1KizrFLd3Nwc6T+/1ErVBs9li16vr7WHVbJ20/7w+vXrcR9vYC2UhmfPnt3WY/5Kj3mo35rbfaCvk48//tiOe99mMejrf7CFmvqwnoK+30zQqAsXLmzr9THUf34ezveJRohtmBhm/fykX/f/+OOPcdeCVauo9boe6PU+0Gt7XPZ6KzssMxaC8Yk9mrwn7O+dO3duW9+fzdzbDo+F9+1nn31m/7TyaV+7tX/QsptA2xEDOmfEDug0eoFe7/sFmgso7CYdSrqJPm53vcK14/7kk09saexRWRBV0Vgf98LshsaEHUNjtxI/NYM625rNNa1UNStk19LCCq7EWB/3Dg4OHjT9vkPFPNDr3gLqge2/ov/+XJ+yTF02cz/s6TVzY97vCoG5DTAezj6nv+uBlpE3PcuB8PesrBpJ/LmesvP8QBtFd8hqpCO4mJEYXNzU4OJ76aFp5aoFyY6k36RFrHW2p+foXpeCjEWFoZOJPm43FWQkBhc2tbN2GaAZumt6nXwnjrRr6XrVAn1aGeo/reIbWIVoLWr7apVi+DqYZmamlWOT92eF++eFPjcOGYpMqgceLveNZVCsWy9s3PZ5+Nvb4VxlNX7V3OBCr0W7JnZKft66JK6mlgHhurfdcofSjLEGGTcJMuLRLeKojzsuzikUrQC0/Rz2LWVrBbUWbtfkXTYjNvCwimBXK4GRFgy3m27Rl7E0r74Xq5SH0+9Zt4Z+hvf0fVoXh40jsQogNYOT6eOuHvMtj0LVW0xXnqXu9Tz9GLqNMkkz1sc9G7dS9OSlS5e+tTU5ZgOFIvpc4dfc800EzdP3uCvF98Y4rA46nn0irNVh992iLeWT75tF05Vnz1EZPc5P5/wNu5dGUm56312VCKExYD+f5b491scPdt+G92hB07eJ1+ZQu7Me6Tnf0/uWZeMjkLmYkZK5kJKUYdfMu1H1ZrpRdDOFCnlXFheGVS3tptWC8JYV2DPfvqOfXWGry45bK9OHHt0lVgk9ffr0tjhJzVykrM8Srof7Un8ws7Xi77x8+fL7spS/Hp99Ji5ZEj33t/Xc74qTogB1xk29pkozJTWvr++1q+R2na6SLMsGR0dHd8PCaanGekwfBAYVMxYf0MZKVieonXOu7Tq6Pu/6tXvD9tFxuG8nIevFmIwamIrqK5MesGyFFQh6sz6UD9/zvhUc8yp8+74+P9J/3pR0I/v7YUR3K+xv6XE/mg0srGU5L7AwdtxaKX1hFaIksr+twc39rqwxkTKo087L+vq6VTSVKzrbH0SDyiu2HHeVCtIqZ/t8pGMs6xDun2HR8xos3KgSWBg7j1p5VT2PO5ubm4/q3De5pdPddpedCsFtrcDC6LmrPNYnNIIeyclzvTAwtiyPndeay8UXseDvvjVKBJURXPjKpOOsUNLCyQrFEwWCFvrXq/yOUGh6ZGisNfLI+vClYaEysALqg1a2FTxV953Q1+14VHT6O67VrSCaooVvUpBjFZeewypB1wurcK2Sq5utCp/PWDoidGfMBubv2TXy5MmTPakhnJOqQXsWE5hrIGj3fNLg0PxU7PD3oyrcV69eVXofVqGHIG72OrUscel4CDuv2r1xRd7NCkliDQP97KOzhKcNwYWvTrRG5wmpRbtRT6SxtdD4oU6hH/p+PQIMG51+X29aj66WQuF3W2Bx4vOpGyyEis6jBZi1nbkp4jEOQY9jYcFtAZxlK+pWuHlOQV3yseYCi8LfVSdYnRXuqaqV/7RLqjILBCXx2s2fwzAQOpOa7BxVGSg5p/vymHWpSkV23JZhc8hgmBEBRjUEF746G1zkAous6PmY7aytMHRMWX8fCm5XIbDYm/e8TfWTmkLXUHJLSEKAscwukjDlMElJ9mP/999/v5I6tiakv5Na3eq/JEEIBK1Cn3u8qfdDxSzQ1HYY71CZBvJjcRDOxWj2+1Uq8CrnaFFgoWpPa7cAo0bXUxkCjAoILpx1cb8Ge0+LAgvz+vXrqMrSMWVt5821JR9+19x+b5v1ELuGQOhC8iiorJuqVgu0a7QS+HrOU7bOxxWvdRoit5d3U3YPWcWaOgsqovLfuXTp0rDqiw8PDz2C4mnWYup4W3ub1mxjk+yr/b9+3wKl/N+zz+9m2TkqCSzMTxLBAhLrmhMfI8ZgLEZw4WxjYyOpddQErbysdZMtek3KfG6bXSI+Fe3AqyWfy9QsamVGv+fQcvLK2gzrtkC7ws5z0SyEMEh2JI60YnCpGGOEiiRb9Bpbx0ISra2t1T5GmxFR9bXnzp1LvU+n99PQ/mMZTxsEPjuw0v7fBklbcKnZwU+1W8KCjk/LBrna4M2SwMIyZROJpF1zDzwGZht7n3UCu9OG4GLF2Rx8qTb/PJpzRWst+eQWQcX+4IkkCAXlWHzsLKmgyiTBTAt26mbsuINFNIj9VZbAAqiyCs/oa5LH4oQBshOpZ1j12gnjLlIMwgwRCyonR0dHpYNQLXOlf3dS9rrcdNOFNMhMOgYN4HbFpzFkgV1nZn51DcHFCgutyt0KL51Ioi5VtKHwG0kLHLM2VlDd7VNBVRC4vqgzBbMuW9BNlkAroypZpRex64XMijlObc0PpT3HAaVlpzzXqYkdIFpXCLA8ptMbW4SQ8RcFCC5WWLhZq1RWLhWa53oEVtFKhJTpcTGscK05CG+RTAuqHemBgsDVCuyrKTNCusjS9FUWn9LX/ChLpPfeV9KezGN8SZ6dZ2mpQWDCex+LA5taTvfISQQXK2reaO45XIKL0HIbi49sa2urdkWrLWebHZJVee28pYzr+vjjj62l7pK90ILq2y6sf7HI7HiW6VTTKusO9M2cbp8iyz72TFrkvbCZnufKY45S12aZcm4MMbhzBsHFiqpRKB6zPSbEQegmcKGBwq063QS2zLEWGCOpzuWYaywkVYUNau1s9mJ2SrMFFjbFr41l3NvuFglB3rDKa5fVZZOTSYtsl2NxErIW21Vf77WHk3NjaEj24kMEFyuoZtbi2NHRkUsrPlQyXssM2/bvpSnpqcPDQ3ttVvX1HnuFTHlmL9Q3XRx7URRYeKxh0VV1AnTn4KJyRZszkZbYFG7nsRZ1F9Bzm5FH9qI5BBcrSG/WyhXylFaOMQXaPJ4D+uoUPN9KPQOvStw7e9G1sRdFi7BZheq1hkVHDaVloRUfc01OpCXT3Uc9xDSEwm7FLsheNIfgYjXFLKXtdsOGvvex+Kh0w4ZCqvYxnD9/3u24vcdeSAu0oC6d3rlgddeVLUxDJZ9JyyJa8cfaHFCq3WBRi1gV0eMdSk2eGcfw+zyzF7UbdquK4GLFxFay6ktx1PYNG1NIGe07dgsuvLMXbVTc+jktTDHndv/Mip5f1VRwTPYvVcqMCa3w96Q9E3GyYHXXRQYXLlzoavaik12ay0BwsWLW19djbzrPbhH3G7bsBZGFlA0Ocw2qQvbCxbJbQWW7fwarmr2odV1okJpUoYRtxWOXgd9rc9yLvk+3rjC9xocSYW1tbSi+fhAfg42NjaGA4GLVJCym00RL2e2GLXtvWkhlEse1Ag8L9IzFR1SK3EPZ7p95K5q9GNZ5sQapUcGFBRW2CVbZUvUL7B8cHHgtCNWqcI1FnTfvRoE2yvbEqUtT31tUQ2fVEFysnuibzrOLwHjesBXeW+x7H3hNw51y7BJyf29VhPR8ncpupbIXkbvzLvwZS5Vbl6V+ntf09+9YQHHx4sXHIagYSZyxBhZX+zqoNjHb494ocOzSZNyFEFysougb1jviDq14l2mpWmEP5z3nsFX7dXHktD34Mf1MrkqLbIv6mFZ07IqqXRSzjkJR5syCCdvwzIKIzc3NX/S8PtbfbV0ftmDUKGFg4nR30d4GFkbPR8p920Sj4IH4WEqjoGsILlZPJvG2vQcjed2wi5Y3Tu3vbiKN6dgKcs0mLWKBhX7ZkzhZ2NOl97RrMZOaZq9P2+XWggnb8MxxdsNYHzc1W/FFU/u3tEnvkdSyxrVR4DnLre1GQRcRXKyelBvWfTCS48DOQYOjsN2DKq+BnVoAt7JnRGJgMfXdKoyUj6z03rdW9Vxa5mdH0lhGwio7C1Jv2LbllqmwoGJV1hbRoKtzjQJxGieWMAZsZawJkBNuWK/04JTdsENJtL6+nknBHg76/YG2NiXB8UqgWmbviRPrEtJKZiyJx51aANewJ+mOF//S87grPWYVg553qctaq/qZ25in4cxT00BhUvBjv+rfe5Fb4XNfr+dKW5T3ne0RoudMEgwtmPUMtmyc2OHhYdUNH+fSz/PUd4sQXGDWNb1fbzZww1bemGietbW1TAqCC/3dLzQFLSm0gLegak98eQRVmbTAuq88pr7a4l96/axM67omy/4Mp/8TBvaOvbZiXzUaWCRfI5ppHeml5tZFZI2CS5cujR3uhUxOObpFVk/qDTvwXLXSeE3PjJ3uV4UNGPVO6YfZMsna6GrQwM02nPMICCwLdFr3WBjaf2zPFf1yRYOKXQKL+SxjI4ka6hrxGi91qhFc9JRNZSvaktzjhm1o3QKvNS+KTCRdrU3SqvAKqrR15rZR0zzhvXpNod3p+rbxTbKMxSpuP+9Nz5NHMOveKNBA2z671PeWySlHcNFD081+iqbM6fc8CrXtrrbii5w7d84rBd/EolVNBlWuwgyEsTjQbqreTk1N3eFUz+OeoJSWVRNx4L3JnwXab9++TbpvPRp5fUdw0UPTfTSKLmD93r8knc0aGYkj55UrT/zukIpO1cmukWfPnnl8plV5rfbY24W1UlvU7C1RzeHhoUt2J3bp/0U08BlLAqesTK8RXPTQ9Gaa08KaiIOG1n5I2rlxUYvSKWPTSCtIGgqqmmDpfP2cXLpHerywVlLF4H0NraqwH4pHJbztHchqo+CBIAnBRQ9NN/vR1F3RjTkWH+4tz9TWwKtXr+YWRF7bQDex1XlKUKU/23rfva3R4ZQJyorGBfVA0jkPM2bIXlTjcn17b/Ln0Chw25a+rwgueuby5ct2Ex0XXEW7E4aBZC4puYRN0AqlLov9/PnzuQVRauCSM+hSULWM9KoVrPqeb4gD/T23+lbRaqt1ImkGZC+qSc1m5rhvdZ7y3rTsnMgpR3DRM3rRvu+uePPmzeM5r3EZRNhEC0x/51gilLXgPffz8J4tkzj6fCktIDuf+ll5TMnr3dTU0GpNupb03N1y2PNm5Xk2CrwDupT3pg2/1jOOXUNw0T/v039//PHHr0Uv0At7T3y437CxrQEtrEtvVq+gSg09p1KGyiqqsNFjGsuSaFC069Q9suORDdJgeiIJ9Fg+rfra2CB4xn26RxbzbBToZ+Y62ys0CqK8fPmS4ELQG2FjqPeF1bxVEJ3maR/zHoNQJUiYozQocQyqrNUyEl9RGQgNIMeyJJ7dI1qxJ6/QKomDlfXaq7xeiNMYnkyzNvcFZVx2TlaZZ5dmQqNgfEpXqP0AwUW/5CPzybwXeW51rgaeu13Gtga01Toue41zK8i7S6iXhZRj98h26uBOx/VMSjmm64e24J1gLsetzt27NGOCTMcMaq8RXPRE6L8d5r41WfR6zxtWuWUvItekGIdpa6Uctzr37hKKCS68AsQkXt0jNrgzpbvJcT2TUp6BqhpdvHixsS6Svq+G6rhzsnGd5RYzxV2vUc+yt7cILvqjVgXvfMO6ziOPmAFRuZINW513LnsRMQPhxcHBQScKKcfukUHqyp2JswsyqcctuNNr6Zp2kTzyDgQ0aLml5/Rx38d2hE3eXDhnL+qWJZUbQquO4KIHpst9z3x7UvZzzjesR5/5sTqpRmup1llOObRuO5e9iJiB8KBL/baO3SNJLUuvxdKqcM7+mUwDgUcWEEgiKxP0PN7X97grK9DH3+HsRd3rrRPZxi4guOgBLZBOFEZVlvn2zl54jb2os9VyTIDU1exFnf0G3rx54xYYetHryQKt5MrdVu6MPad6XlrL5jjfP1MDCwj0XnpsQUbdTIa+3sZwfGdBSm7hqJWo0LqYvdDrrfI9W7chtOrWBJ22tbVlBcho9vtVKyq9OW5YQSS5WSYJLHuxJ4nsvWtBUuV1k6dPn+5JTZYl0ALYCiqPbMvxOg3aMPTac6OUFbJdTa3q9XTd4XrKYs+pnRf9bMfy4fijyn9XarLPYroirrPMggw9lxZoWMBmj5/0/O7P/P1B2KDwS3k3Df3Eea8y2LkPLJhL+GxnDa3sfPbsWWvBqH5W1wXvkbnoMGvdacFSWEFWbf1bYezZTaCtrV1piXafXJVInjt8itM6DVVYQKWF7K50VAh6PAKtlHMaPRq/bsakoezFrG1514CwjMTD/EPvc5vK+l14vui9761SH781hsQp62hlZ4tjUfbC6sgICC46LKxsmBU9V2dbaG3974rTGv4eKw9aa6zCa5Jb754FleeYk0VSAqq2WOrXY/xFbPdI2Gk26nPd2NiovNbFVLiOOkk/h9a7RPR8NFZhh3veq3ska2N1WGsQdLEbc9kILjpKW3U2O2TuYMJFm3gVsXS2+E2tS6potUD8vOQlY4/Wu2Mr22ynZm30uLOS5zvbHTLLafxFVOGfMmj36Oio8iqdUyH718XKYxwyK63SjECj2QDLOjoNHjapWces7AXWIGCGyEkEFx1kmQEtzL5f9Jq1tbVfpAa7+B37BIcpI9712LIFz008W4qhle1SMVjWJragqpDtudPl7pAiFrA6rDsRVfjHDtrV+yaTCCH7N5ZuaW0cUNtsbRXx2zE1egCxdk0tvG9tijaBRTGCi5wsy5Ij8piWUZ6NBtcvD8te9+zZs9LZIrNCK8el4rbBaGGwaS1hdHzhDWsVVROtgFBpu6SPraCKXKtgUSF1T4OgHemZXMCalBGLKfxj195IaXVb0NvWIl4VLLOPP6lbtAr7fLX766rT+Y5ehl2v768WPHf7yZMne4JCBBc5h4eHmST629/+Fl14WVeIDeKS8pH40YV5mCrltZ323brjL/T4hkXfbyqwmNLjHjmlWm2tgpjVFudtqnTH3pv0VKjgbJxISoBhhX/trjYt2B/U/UwXZc3K2LVp1+iyA4yUPn6nRby+lBZYgOF4vo+n8Nb5ATtXuem+s272LdPYNoKLnDDlq3V2EeuF/7CsK2Qq9WazAEOP1WMMhlWwD6sGGKFgK+pOGf/+++9Xmk4v2jgBpy6Sba0MH1YtqMP6IMPZ79t7Sc1YpFSW4eeTs3XTACPxuhzF7D1SN31eYbzPQl0IMBKD8EzSDS9cuNB49sLYcWoX2BXx6SLZqdOdq2VkUYPAptFfDbPRsADBRY7etF9LojqFvbV+w/K9tm7AsOrPRSyffYK1+rT1c8WhkDwOMMoqBjtWa/HLycLtpt6oV9taYTC0NqyvOvXvbVuWqSzAKAqo7JxbAeXR8kmtLMsGmVZlAUZqpWt7j9TNhE3T51Kx8tH3l1wpLjPASO3jLxtDUJVW+K3MnjL2Gev1dcWjYWDdubbPS9l9q9fhN2H107yxlZnLGETbRwQXQbjYhpLum0VPWiWrf2tkmQpt/f4SLuBarUct1H4VB9NWgUN3wfF6HLb7Y1GLxsaRWEtfPuyrHevjyjJaAPY3nQIr6yJ5bMc9W1jNBI755+5YlsaxgBpKmoHXGh52PT19+vSLUAnEBG/HgWrd1P00wKiyXLdXMJVrUbc1FfR4jIlDH7/XJoSt7/YagvHkcS+2z4s1DCyjONu9af8fuk/2ct+2a/m4EcTgzerKl0k8JWyd/gX9a3VN9PHAggC9kG1evV3A1n+XORVud7wHAIYZKved3t9E/n/vEwso3t/AVjDo42abK+ctYgWMLRXsdNzWeraC6Pjzlg+DRtub47Znq8eCl4LWVQzrw3ctOC1AsNUn9dx+FXFuo9+P3se7ZUs/v379+srz58/dBkM6X0MnhEzX9dQBnI7XS577tVPGri3tDtvR8+IVKI3DV7tf8w0g6wK58/Lly+/7vnfLMpz64MJa1WHvjqH0hM25D1Pj3IXxAXbTevepuleuXkJFOGyggrAC6Z61qD2POxSu3zkGw2aij9veeyNYS1CzVtf0HHwdltGumqWLrrTKzo92aVhw654xayjIuHNwcLCbUrmFz8DKONcGyYyxvJv1tCctmQawUpItjkBQ4eDUBxcazT9uqsXRFC0crzfd8g993zuRLc8pCyh+7NNNevny5Wt6zN/UrAjz7DithXnPtkxv4rhDANhEStq2ef+iyc/KrisbOK3X8NDGi9iA0nkZvdQg2rp79HeM5GTlM7YUtzQkfD72N4cSxzUotWtaA7XGx0jYqsFNntd5po0D6dA5B8EFKgiBxvRh09AGs7MMwiBTq1R/0spj8ttvv/V+G+hQOU2POZPi457Iu1b/T/rvfQqmNJmyr0dHR5kGpfse19C08gnZk8y+ZwMEpWGWMTh//vy2BVJ6T3xpf9uun5lAylYbtfEU+7bTsX4dr8K9sywF53wwO8jeyiq7b8PO0vvr6+vjiRIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABA/R8V29NCEuB+mQAAAABJRU5ErkJggg==",
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
style={
|
|
104
|
-
{
|
|
105
|
-
"height": 48,
|
|
106
|
-
"width": 134,
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
/>
|
|
110
|
-
<View
|
|
111
|
-
style={
|
|
112
|
-
{
|
|
113
|
-
"flexGrow": 0,
|
|
114
|
-
"height": 40,
|
|
115
|
-
"width": 40,
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
/>
|
|
119
|
-
<View
|
|
120
|
-
accessibilityRole="button"
|
|
121
|
-
accessibilityState={
|
|
122
|
-
{
|
|
123
|
-
"busy": undefined,
|
|
124
|
-
"checked": undefined,
|
|
125
|
-
"disabled": undefined,
|
|
126
|
-
"expanded": undefined,
|
|
127
|
-
"selected": undefined,
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
accessibilityValue={
|
|
131
|
-
{
|
|
132
|
-
"max": undefined,
|
|
133
|
-
"min": undefined,
|
|
134
|
-
"now": undefined,
|
|
135
|
-
"text": undefined,
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
accessible={true}
|
|
139
|
-
collapsable={false}
|
|
140
|
-
focusable={true}
|
|
141
|
-
onBlur={[Function]}
|
|
142
|
-
onClick={[Function]}
|
|
143
|
-
onFocus={[Function]}
|
|
144
|
-
onResponderGrant={[Function]}
|
|
145
|
-
onResponderMove={[Function]}
|
|
146
|
-
onResponderRelease={[Function]}
|
|
147
|
-
onResponderTerminate={[Function]}
|
|
148
|
-
onResponderTerminationRequest={[Function]}
|
|
149
|
-
onStartShouldSetResponder={[Function]}
|
|
150
|
-
pointerEvents="none"
|
|
151
|
-
style={
|
|
152
|
-
[
|
|
153
|
-
[
|
|
154
|
-
{
|
|
155
|
-
"_container": {
|
|
156
|
-
"overflow": "hidden",
|
|
157
|
-
},
|
|
158
|
-
"_pressed": {
|
|
159
|
-
"bottom": 0,
|
|
160
|
-
"left": 0,
|
|
161
|
-
"right": 0,
|
|
162
|
-
"top": 0,
|
|
163
|
-
},
|
|
164
|
-
"alignSelf": "flex-start",
|
|
165
|
-
"container": {
|
|
166
|
-
"overflow": "hidden",
|
|
167
|
-
},
|
|
168
|
-
"overflow": "visible",
|
|
169
|
-
"padding": 8,
|
|
170
|
-
"pressed": {
|
|
171
|
-
"bottom": 0,
|
|
172
|
-
"left": 0,
|
|
173
|
-
"right": 0,
|
|
174
|
-
"top": 0,
|
|
175
|
-
},
|
|
176
|
-
},
|
|
177
|
-
],
|
|
178
|
-
{
|
|
179
|
-
"opacity": 1,
|
|
180
|
-
},
|
|
181
|
-
]
|
|
182
|
-
}
|
|
183
|
-
testID="menu-button-icon"
|
|
184
|
-
>
|
|
185
|
-
<View
|
|
186
|
-
style={
|
|
187
|
-
[
|
|
188
|
-
{
|
|
189
|
-
"position": "relative",
|
|
190
|
-
},
|
|
191
|
-
]
|
|
192
|
-
}
|
|
193
|
-
>
|
|
194
|
-
<Text
|
|
195
|
-
accessibilityElementsHidden={true}
|
|
196
|
-
allowFontScaling={false}
|
|
197
|
-
importantForAccessibility="no"
|
|
198
|
-
selectable={false}
|
|
199
|
-
style={
|
|
200
|
-
[
|
|
201
|
-
{
|
|
202
|
-
"color": "#0C0A0A",
|
|
203
|
-
"fontFamily": "auroraicons",
|
|
204
|
-
"fontSize": 24,
|
|
205
|
-
"fontStyle": "normal",
|
|
206
|
-
"fontWeight": "normal",
|
|
207
|
-
"height": 24,
|
|
208
|
-
"width": 24,
|
|
209
|
-
},
|
|
210
|
-
]
|
|
211
|
-
}
|
|
212
|
-
>
|
|
213
|
-
|
|
214
|
-
</Text>
|
|
215
|
-
<View
|
|
216
|
-
collapsable={false}
|
|
217
|
-
style={
|
|
218
|
-
{
|
|
219
|
-
"backgroundColor": "#F45545",
|
|
220
|
-
"borderColor": "#FFFFFF",
|
|
221
|
-
"borderRadius": 9999,
|
|
222
|
-
"borderWidth": 2,
|
|
223
|
-
"height": 10,
|
|
224
|
-
"position": "absolute",
|
|
225
|
-
"right": 0,
|
|
226
|
-
"top": 0,
|
|
227
|
-
"transform": [
|
|
228
|
-
{
|
|
229
|
-
"scale": 0,
|
|
230
|
-
},
|
|
231
|
-
],
|
|
232
|
-
"width": 10,
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
/>
|
|
236
|
-
</View>
|
|
237
|
-
</View>
|
|
238
|
-
</View>
|
|
239
|
-
</View>
|
|
240
|
-
<View
|
|
241
|
-
style={
|
|
242
|
-
{
|
|
243
|
-
"flex": 1,
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
>
|
|
247
|
-
<Text>
|
|
248
|
-
DummyLayout content
|
|
249
|
-
</Text>
|
|
250
|
-
</View>
|
|
251
|
-
</View>
|
|
252
|
-
</RCTScrollView>
|
|
253
|
-
</View>
|
|
254
|
-
<View
|
|
255
|
-
style={
|
|
256
|
-
[
|
|
257
|
-
{
|
|
258
|
-
"backgroundColor": "#FFFFFF",
|
|
259
|
-
"width": "100%",
|
|
260
|
-
},
|
|
261
|
-
]
|
|
262
|
-
}
|
|
263
|
-
>
|
|
264
|
-
<View
|
|
265
|
-
style={
|
|
266
|
-
[
|
|
267
|
-
false,
|
|
268
|
-
{
|
|
269
|
-
"alignContent": "center",
|
|
270
|
-
"alignItems": "center",
|
|
271
|
-
"display": "flex",
|
|
272
|
-
"flexDirection": "row",
|
|
273
|
-
"justifyContent": "space-around",
|
|
274
|
-
"paddingBottom": 4,
|
|
275
|
-
"paddingHorizontal": 8,
|
|
276
|
-
"paddingTop": 8,
|
|
277
|
-
},
|
|
278
|
-
]
|
|
279
|
-
}
|
|
280
|
-
>
|
|
281
|
-
<View
|
|
282
|
-
accessibilityRole="button"
|
|
283
|
-
accessibilityState={
|
|
284
|
-
{
|
|
285
|
-
"busy": undefined,
|
|
286
|
-
"checked": undefined,
|
|
287
|
-
"disabled": undefined,
|
|
288
|
-
"expanded": undefined,
|
|
289
|
-
"selected": undefined,
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
accessibilityValue={
|
|
293
|
-
{
|
|
294
|
-
"max": undefined,
|
|
295
|
-
"min": undefined,
|
|
296
|
-
"now": undefined,
|
|
297
|
-
"text": undefined,
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
accessible={true}
|
|
301
|
-
collapsable={false}
|
|
302
|
-
focusable={true}
|
|
303
|
-
onBlur={[Function]}
|
|
304
|
-
onClick={[Function]}
|
|
305
|
-
onFocus={[Function]}
|
|
306
|
-
onResponderGrant={[Function]}
|
|
307
|
-
onResponderMove={[Function]}
|
|
308
|
-
onResponderRelease={[Function]}
|
|
309
|
-
onResponderTerminate={[Function]}
|
|
310
|
-
onResponderTerminationRequest={[Function]}
|
|
311
|
-
onStartShouldSetResponder={[Function]}
|
|
312
|
-
pointerEvents="none"
|
|
313
|
-
style={
|
|
314
|
-
[
|
|
315
|
-
[
|
|
316
|
-
{
|
|
317
|
-
"_container": {
|
|
318
|
-
"overflow": "hidden",
|
|
319
|
-
},
|
|
320
|
-
"_pressed": {
|
|
321
|
-
"bottom": 0,
|
|
322
|
-
"left": 0,
|
|
323
|
-
"right": 0,
|
|
324
|
-
"top": 0,
|
|
325
|
-
},
|
|
326
|
-
"alignItems": "center",
|
|
327
|
-
"alignSelf": "auto",
|
|
328
|
-
"container": {
|
|
329
|
-
"overflow": "hidden",
|
|
330
|
-
},
|
|
331
|
-
"display": "flex",
|
|
332
|
-
"flexDirection": "column",
|
|
333
|
-
"justifyContent": "center",
|
|
334
|
-
"overflow": "hidden",
|
|
335
|
-
"pressed": {
|
|
336
|
-
"bottom": 0,
|
|
337
|
-
"left": 0,
|
|
338
|
-
"right": 0,
|
|
339
|
-
"top": 0,
|
|
340
|
-
},
|
|
341
|
-
},
|
|
342
|
-
],
|
|
343
|
-
{
|
|
344
|
-
"opacity": 1,
|
|
345
|
-
},
|
|
346
|
-
]
|
|
347
|
-
}
|
|
348
|
-
value="/"
|
|
349
|
-
>
|
|
350
|
-
<View
|
|
351
|
-
accessibilityRole="button"
|
|
352
|
-
accessibilityState={
|
|
353
|
-
{
|
|
354
|
-
"busy": undefined,
|
|
355
|
-
"checked": undefined,
|
|
356
|
-
"disabled": undefined,
|
|
357
|
-
"expanded": undefined,
|
|
358
|
-
"selected": undefined,
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
accessibilityValue={
|
|
362
|
-
{
|
|
363
|
-
"max": undefined,
|
|
364
|
-
"min": undefined,
|
|
365
|
-
"now": undefined,
|
|
366
|
-
"text": undefined,
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
accessible={true}
|
|
370
|
-
collapsable={false}
|
|
371
|
-
focusable={true}
|
|
372
|
-
onBlur={[Function]}
|
|
373
|
-
onClick={[Function]}
|
|
374
|
-
onFocus={[Function]}
|
|
375
|
-
onResponderGrant={[Function]}
|
|
376
|
-
onResponderMove={[Function]}
|
|
377
|
-
onResponderRelease={[Function]}
|
|
378
|
-
onResponderTerminate={[Function]}
|
|
379
|
-
onResponderTerminationRequest={[Function]}
|
|
380
|
-
onStartShouldSetResponder={[Function]}
|
|
381
|
-
pointerEvents="none"
|
|
382
|
-
style={
|
|
383
|
-
[
|
|
384
|
-
[
|
|
385
|
-
{
|
|
386
|
-
"_container": {
|
|
387
|
-
"overflow": "hidden",
|
|
388
|
-
},
|
|
389
|
-
"_pressed": {
|
|
390
|
-
"bottom": 0,
|
|
391
|
-
"left": 0,
|
|
392
|
-
"right": 0,
|
|
393
|
-
"top": 0,
|
|
394
|
-
},
|
|
395
|
-
"alignSelf": "center",
|
|
396
|
-
"container": {
|
|
397
|
-
"overflow": "hidden",
|
|
398
|
-
},
|
|
399
|
-
"marginBottom": 4,
|
|
400
|
-
"overflow": "visible",
|
|
401
|
-
"padding": 0,
|
|
402
|
-
"pressed": {
|
|
403
|
-
"bottom": 0,
|
|
404
|
-
"left": 0,
|
|
405
|
-
"right": 0,
|
|
406
|
-
"top": 0,
|
|
407
|
-
},
|
|
408
|
-
},
|
|
409
|
-
],
|
|
410
|
-
{
|
|
411
|
-
"opacity": 1,
|
|
412
|
-
},
|
|
413
|
-
]
|
|
414
|
-
}
|
|
415
|
-
>
|
|
416
|
-
<View
|
|
417
|
-
style={
|
|
418
|
-
[
|
|
419
|
-
{
|
|
420
|
-
"position": "relative",
|
|
421
|
-
},
|
|
422
|
-
]
|
|
423
|
-
}
|
|
424
|
-
>
|
|
425
|
-
<Text
|
|
426
|
-
accessibilityElementsHidden={true}
|
|
427
|
-
allowFontScaling={false}
|
|
428
|
-
importantForAccessibility="no"
|
|
429
|
-
selectable={false}
|
|
430
|
-
style={
|
|
431
|
-
[
|
|
432
|
-
{
|
|
433
|
-
"color": "#0C0A0A",
|
|
434
|
-
"fontFamily": "auroraicons",
|
|
435
|
-
"fontSize": 24,
|
|
436
|
-
"fontStyle": "normal",
|
|
437
|
-
"fontWeight": "normal",
|
|
438
|
-
"height": 24,
|
|
439
|
-
"width": 24,
|
|
440
|
-
},
|
|
441
|
-
]
|
|
442
|
-
}
|
|
443
|
-
>
|
|
444
|
-
|
|
445
|
-
</Text>
|
|
446
|
-
<View
|
|
447
|
-
collapsable={false}
|
|
448
|
-
style={
|
|
449
|
-
{
|
|
450
|
-
"backgroundColor": "#F45545",
|
|
451
|
-
"borderColor": "#FFFFFF",
|
|
452
|
-
"borderRadius": 9999,
|
|
453
|
-
"borderWidth": 2,
|
|
454
|
-
"height": 10,
|
|
455
|
-
"position": "absolute",
|
|
456
|
-
"right": 0,
|
|
457
|
-
"top": 0,
|
|
458
|
-
"transform": [
|
|
459
|
-
{
|
|
460
|
-
"scale": 0,
|
|
461
|
-
},
|
|
462
|
-
],
|
|
463
|
-
"width": 10,
|
|
464
|
-
}
|
|
465
|
-
}
|
|
466
|
-
/>
|
|
467
|
-
</View>
|
|
468
|
-
</View>
|
|
469
|
-
<Text
|
|
470
|
-
allowFontScaling={false}
|
|
471
|
-
numberOfLines={1}
|
|
472
|
-
selectable={false}
|
|
473
|
-
style={
|
|
474
|
-
[
|
|
475
|
-
{
|
|
476
|
-
"color": "#0C0A0A",
|
|
477
|
-
"fontFamily": "AreaNormal-Semibold",
|
|
478
|
-
"fontSize": 10,
|
|
479
|
-
"letterSpacing": 0.1,
|
|
480
|
-
"lineHeight": 14,
|
|
481
|
-
"overflow": "hidden",
|
|
482
|
-
"paddingBottom": 0,
|
|
483
|
-
"paddingLeft": 0,
|
|
484
|
-
"paddingRight": 0,
|
|
485
|
-
"paddingTop": 0,
|
|
486
|
-
"textAlign": "center",
|
|
487
|
-
},
|
|
488
|
-
]
|
|
489
|
-
}
|
|
490
|
-
>
|
|
491
|
-
Inicio
|
|
492
|
-
</Text>
|
|
493
|
-
</View>
|
|
494
|
-
<View
|
|
495
|
-
accessibilityRole="button"
|
|
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
|
-
onBlur={[Function]}
|
|
517
|
-
onClick={[Function]}
|
|
518
|
-
onFocus={[Function]}
|
|
519
|
-
onResponderGrant={[Function]}
|
|
520
|
-
onResponderMove={[Function]}
|
|
521
|
-
onResponderRelease={[Function]}
|
|
522
|
-
onResponderTerminate={[Function]}
|
|
523
|
-
onResponderTerminationRequest={[Function]}
|
|
524
|
-
onStartShouldSetResponder={[Function]}
|
|
525
|
-
pointerEvents="none"
|
|
526
|
-
style={
|
|
527
|
-
[
|
|
528
|
-
[
|
|
529
|
-
{
|
|
530
|
-
"_container": {
|
|
531
|
-
"overflow": "hidden",
|
|
532
|
-
},
|
|
533
|
-
"_pressed": {
|
|
534
|
-
"bottom": 0,
|
|
535
|
-
"left": 0,
|
|
536
|
-
"right": 0,
|
|
537
|
-
"top": 0,
|
|
538
|
-
},
|
|
539
|
-
"alignItems": "center",
|
|
540
|
-
"alignSelf": "auto",
|
|
541
|
-
"container": {
|
|
542
|
-
"overflow": "hidden",
|
|
543
|
-
},
|
|
544
|
-
"display": "flex",
|
|
545
|
-
"flexDirection": "column",
|
|
546
|
-
"justifyContent": "center",
|
|
547
|
-
"overflow": "hidden",
|
|
548
|
-
"pressed": {
|
|
549
|
-
"bottom": 0,
|
|
550
|
-
"left": 0,
|
|
551
|
-
"right": 0,
|
|
552
|
-
"top": 0,
|
|
553
|
-
},
|
|
554
|
-
},
|
|
555
|
-
],
|
|
556
|
-
{
|
|
557
|
-
"opacity": 1,
|
|
558
|
-
},
|
|
559
|
-
]
|
|
560
|
-
}
|
|
561
|
-
value="/look-and-like"
|
|
562
|
-
>
|
|
563
|
-
<View
|
|
564
|
-
accessibilityRole="button"
|
|
565
|
-
accessibilityState={
|
|
566
|
-
{
|
|
567
|
-
"busy": undefined,
|
|
568
|
-
"checked": undefined,
|
|
569
|
-
"disabled": undefined,
|
|
570
|
-
"expanded": undefined,
|
|
571
|
-
"selected": undefined,
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
accessibilityValue={
|
|
575
|
-
{
|
|
576
|
-
"max": undefined,
|
|
577
|
-
"min": undefined,
|
|
578
|
-
"now": undefined,
|
|
579
|
-
"text": undefined,
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
accessible={true}
|
|
583
|
-
collapsable={false}
|
|
584
|
-
focusable={true}
|
|
585
|
-
onBlur={[Function]}
|
|
586
|
-
onClick={[Function]}
|
|
587
|
-
onFocus={[Function]}
|
|
588
|
-
onResponderGrant={[Function]}
|
|
589
|
-
onResponderMove={[Function]}
|
|
590
|
-
onResponderRelease={[Function]}
|
|
591
|
-
onResponderTerminate={[Function]}
|
|
592
|
-
onResponderTerminationRequest={[Function]}
|
|
593
|
-
onStartShouldSetResponder={[Function]}
|
|
594
|
-
pointerEvents="none"
|
|
595
|
-
style={
|
|
596
|
-
[
|
|
597
|
-
[
|
|
598
|
-
{
|
|
599
|
-
"_container": {
|
|
600
|
-
"overflow": "hidden",
|
|
601
|
-
},
|
|
602
|
-
"_pressed": {
|
|
603
|
-
"bottom": 0,
|
|
604
|
-
"left": 0,
|
|
605
|
-
"right": 0,
|
|
606
|
-
"top": 0,
|
|
607
|
-
},
|
|
608
|
-
"alignSelf": "center",
|
|
609
|
-
"container": {
|
|
610
|
-
"overflow": "hidden",
|
|
611
|
-
},
|
|
612
|
-
"marginBottom": 4,
|
|
613
|
-
"overflow": "visible",
|
|
614
|
-
"padding": 0,
|
|
615
|
-
"pressed": {
|
|
616
|
-
"bottom": 0,
|
|
617
|
-
"left": 0,
|
|
618
|
-
"right": 0,
|
|
619
|
-
"top": 0,
|
|
620
|
-
},
|
|
621
|
-
},
|
|
622
|
-
],
|
|
623
|
-
{
|
|
624
|
-
"opacity": 1,
|
|
625
|
-
},
|
|
626
|
-
]
|
|
627
|
-
}
|
|
628
|
-
>
|
|
629
|
-
<View
|
|
630
|
-
style={
|
|
631
|
-
[
|
|
632
|
-
{
|
|
633
|
-
"position": "relative",
|
|
634
|
-
},
|
|
635
|
-
]
|
|
636
|
-
}
|
|
637
|
-
>
|
|
638
|
-
<Text
|
|
639
|
-
accessibilityElementsHidden={true}
|
|
640
|
-
allowFontScaling={false}
|
|
641
|
-
importantForAccessibility="no"
|
|
642
|
-
selectable={false}
|
|
643
|
-
style={
|
|
644
|
-
[
|
|
645
|
-
{
|
|
646
|
-
"color": "#837C7C",
|
|
647
|
-
"fontFamily": "auroraicons",
|
|
648
|
-
"fontSize": 24,
|
|
649
|
-
"fontStyle": "normal",
|
|
650
|
-
"fontWeight": "normal",
|
|
651
|
-
"height": 24,
|
|
652
|
-
"width": 24,
|
|
653
|
-
},
|
|
654
|
-
]
|
|
655
|
-
}
|
|
656
|
-
>
|
|
657
|
-
|
|
658
|
-
</Text>
|
|
659
|
-
<View
|
|
660
|
-
collapsable={false}
|
|
661
|
-
style={
|
|
662
|
-
{
|
|
663
|
-
"backgroundColor": "#F45545",
|
|
664
|
-
"borderColor": "#FFFFFF",
|
|
665
|
-
"borderRadius": 9999,
|
|
666
|
-
"borderWidth": 2,
|
|
667
|
-
"height": 10,
|
|
668
|
-
"position": "absolute",
|
|
669
|
-
"right": 0,
|
|
670
|
-
"top": 0,
|
|
671
|
-
"transform": [
|
|
672
|
-
{
|
|
673
|
-
"scale": 0,
|
|
674
|
-
},
|
|
675
|
-
],
|
|
676
|
-
"width": 10,
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
/>
|
|
680
|
-
</View>
|
|
681
|
-
</View>
|
|
682
|
-
<Text
|
|
683
|
-
allowFontScaling={false}
|
|
684
|
-
numberOfLines={1}
|
|
685
|
-
selectable={false}
|
|
686
|
-
style={
|
|
687
|
-
[
|
|
688
|
-
{
|
|
689
|
-
"color": "#837C7C",
|
|
690
|
-
"fontFamily": "AreaNormal-Semibold",
|
|
691
|
-
"fontSize": 10,
|
|
692
|
-
"letterSpacing": 0.1,
|
|
693
|
-
"lineHeight": 14,
|
|
694
|
-
"overflow": "hidden",
|
|
695
|
-
"paddingBottom": 0,
|
|
696
|
-
"paddingLeft": 0,
|
|
697
|
-
"paddingRight": 0,
|
|
698
|
-
"paddingTop": 0,
|
|
699
|
-
"textAlign": "center",
|
|
700
|
-
},
|
|
701
|
-
]
|
|
702
|
-
}
|
|
703
|
-
>
|
|
704
|
-
Look&Like
|
|
705
|
-
</Text>
|
|
706
|
-
</View>
|
|
707
|
-
<View
|
|
708
|
-
accessibilityRole="button"
|
|
709
|
-
accessibilityState={
|
|
710
|
-
{
|
|
711
|
-
"busy": undefined,
|
|
712
|
-
"checked": undefined,
|
|
713
|
-
"disabled": undefined,
|
|
714
|
-
"expanded": undefined,
|
|
715
|
-
"selected": undefined,
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
accessibilityValue={
|
|
719
|
-
{
|
|
720
|
-
"max": undefined,
|
|
721
|
-
"min": undefined,
|
|
722
|
-
"now": undefined,
|
|
723
|
-
"text": undefined,
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
accessible={true}
|
|
727
|
-
collapsable={false}
|
|
728
|
-
focusable={true}
|
|
729
|
-
onBlur={[Function]}
|
|
730
|
-
onClick={[Function]}
|
|
731
|
-
onFocus={[Function]}
|
|
732
|
-
onResponderGrant={[Function]}
|
|
733
|
-
onResponderMove={[Function]}
|
|
734
|
-
onResponderRelease={[Function]}
|
|
735
|
-
onResponderTerminate={[Function]}
|
|
736
|
-
onResponderTerminationRequest={[Function]}
|
|
737
|
-
onStartShouldSetResponder={[Function]}
|
|
738
|
-
pointerEvents="none"
|
|
739
|
-
style={
|
|
740
|
-
[
|
|
741
|
-
[
|
|
742
|
-
{
|
|
743
|
-
"_container": {
|
|
744
|
-
"overflow": "hidden",
|
|
745
|
-
},
|
|
746
|
-
"_pressed": {
|
|
747
|
-
"bottom": 0,
|
|
748
|
-
"left": 0,
|
|
749
|
-
"right": 0,
|
|
750
|
-
"top": 0,
|
|
751
|
-
},
|
|
752
|
-
"alignItems": "center",
|
|
753
|
-
"alignSelf": "auto",
|
|
754
|
-
"container": {
|
|
755
|
-
"overflow": "hidden",
|
|
756
|
-
},
|
|
757
|
-
"display": "flex",
|
|
758
|
-
"flexDirection": "column",
|
|
759
|
-
"justifyContent": "center",
|
|
760
|
-
"overflow": "hidden",
|
|
761
|
-
"pressed": {
|
|
762
|
-
"bottom": 0,
|
|
763
|
-
"left": 0,
|
|
764
|
-
"right": 0,
|
|
765
|
-
"top": 0,
|
|
766
|
-
},
|
|
767
|
-
},
|
|
768
|
-
],
|
|
769
|
-
{
|
|
770
|
-
"opacity": 1,
|
|
771
|
-
},
|
|
772
|
-
]
|
|
773
|
-
}
|
|
774
|
-
value="/friends"
|
|
775
|
-
>
|
|
776
|
-
<View
|
|
777
|
-
accessibilityRole="button"
|
|
778
|
-
accessibilityState={
|
|
779
|
-
{
|
|
780
|
-
"busy": undefined,
|
|
781
|
-
"checked": undefined,
|
|
782
|
-
"disabled": undefined,
|
|
783
|
-
"expanded": undefined,
|
|
784
|
-
"selected": undefined,
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
accessibilityValue={
|
|
788
|
-
{
|
|
789
|
-
"max": undefined,
|
|
790
|
-
"min": undefined,
|
|
791
|
-
"now": undefined,
|
|
792
|
-
"text": undefined,
|
|
793
|
-
}
|
|
794
|
-
}
|
|
795
|
-
accessible={true}
|
|
796
|
-
collapsable={false}
|
|
797
|
-
focusable={true}
|
|
798
|
-
onBlur={[Function]}
|
|
799
|
-
onClick={[Function]}
|
|
800
|
-
onFocus={[Function]}
|
|
801
|
-
onResponderGrant={[Function]}
|
|
802
|
-
onResponderMove={[Function]}
|
|
803
|
-
onResponderRelease={[Function]}
|
|
804
|
-
onResponderTerminate={[Function]}
|
|
805
|
-
onResponderTerminationRequest={[Function]}
|
|
806
|
-
onStartShouldSetResponder={[Function]}
|
|
807
|
-
pointerEvents="none"
|
|
808
|
-
style={
|
|
809
|
-
[
|
|
810
|
-
[
|
|
811
|
-
{
|
|
812
|
-
"_container": {
|
|
813
|
-
"overflow": "hidden",
|
|
814
|
-
},
|
|
815
|
-
"_pressed": {
|
|
816
|
-
"bottom": 0,
|
|
817
|
-
"left": 0,
|
|
818
|
-
"right": 0,
|
|
819
|
-
"top": 0,
|
|
820
|
-
},
|
|
821
|
-
"alignSelf": "center",
|
|
822
|
-
"container": {
|
|
823
|
-
"overflow": "hidden",
|
|
824
|
-
},
|
|
825
|
-
"marginBottom": 4,
|
|
826
|
-
"overflow": "visible",
|
|
827
|
-
"padding": 0,
|
|
828
|
-
"pressed": {
|
|
829
|
-
"bottom": 0,
|
|
830
|
-
"left": 0,
|
|
831
|
-
"right": 0,
|
|
832
|
-
"top": 0,
|
|
833
|
-
},
|
|
834
|
-
},
|
|
835
|
-
],
|
|
836
|
-
{
|
|
837
|
-
"opacity": 1,
|
|
838
|
-
},
|
|
839
|
-
]
|
|
840
|
-
}
|
|
841
|
-
>
|
|
842
|
-
<View
|
|
843
|
-
style={
|
|
844
|
-
[
|
|
845
|
-
{
|
|
846
|
-
"position": "relative",
|
|
847
|
-
},
|
|
848
|
-
]
|
|
849
|
-
}
|
|
850
|
-
>
|
|
851
|
-
<Text
|
|
852
|
-
accessibilityElementsHidden={true}
|
|
853
|
-
allowFontScaling={false}
|
|
854
|
-
importantForAccessibility="no"
|
|
855
|
-
selectable={false}
|
|
856
|
-
style={
|
|
857
|
-
[
|
|
858
|
-
{
|
|
859
|
-
"color": "#837C7C",
|
|
860
|
-
"fontFamily": "auroraicons",
|
|
861
|
-
"fontSize": 24,
|
|
862
|
-
"fontStyle": "normal",
|
|
863
|
-
"fontWeight": "normal",
|
|
864
|
-
"height": 24,
|
|
865
|
-
"width": 24,
|
|
866
|
-
},
|
|
867
|
-
]
|
|
868
|
-
}
|
|
869
|
-
>
|
|
870
|
-
|
|
871
|
-
</Text>
|
|
872
|
-
<View
|
|
873
|
-
collapsable={false}
|
|
874
|
-
style={
|
|
875
|
-
{
|
|
876
|
-
"backgroundColor": "#F45545",
|
|
877
|
-
"borderColor": "#FFFFFF",
|
|
878
|
-
"borderRadius": 9999,
|
|
879
|
-
"borderWidth": 2,
|
|
880
|
-
"height": 10,
|
|
881
|
-
"position": "absolute",
|
|
882
|
-
"right": 0,
|
|
883
|
-
"top": 0,
|
|
884
|
-
"transform": [
|
|
885
|
-
{
|
|
886
|
-
"scale": 0,
|
|
887
|
-
},
|
|
888
|
-
],
|
|
889
|
-
"width": 10,
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
/>
|
|
893
|
-
</View>
|
|
894
|
-
</View>
|
|
895
|
-
<Text
|
|
896
|
-
allowFontScaling={false}
|
|
897
|
-
numberOfLines={1}
|
|
898
|
-
selectable={false}
|
|
899
|
-
style={
|
|
900
|
-
[
|
|
901
|
-
{
|
|
902
|
-
"color": "#837C7C",
|
|
903
|
-
"fontFamily": "AreaNormal-Semibold",
|
|
904
|
-
"fontSize": 10,
|
|
905
|
-
"letterSpacing": 0.1,
|
|
906
|
-
"lineHeight": 14,
|
|
907
|
-
"overflow": "hidden",
|
|
908
|
-
"paddingBottom": 0,
|
|
909
|
-
"paddingLeft": 0,
|
|
910
|
-
"paddingRight": 0,
|
|
911
|
-
"paddingTop": 0,
|
|
912
|
-
"textAlign": "center",
|
|
913
|
-
},
|
|
914
|
-
]
|
|
915
|
-
}
|
|
916
|
-
>
|
|
917
|
-
Amigas
|
|
918
|
-
</Text>
|
|
919
|
-
</View>
|
|
920
|
-
<View
|
|
921
|
-
accessibilityRole="button"
|
|
922
|
-
accessibilityState={
|
|
923
|
-
{
|
|
924
|
-
"busy": undefined,
|
|
925
|
-
"checked": undefined,
|
|
926
|
-
"disabled": undefined,
|
|
927
|
-
"expanded": undefined,
|
|
928
|
-
"selected": undefined,
|
|
929
|
-
}
|
|
930
|
-
}
|
|
931
|
-
accessibilityValue={
|
|
932
|
-
{
|
|
933
|
-
"max": undefined,
|
|
934
|
-
"min": undefined,
|
|
935
|
-
"now": undefined,
|
|
936
|
-
"text": undefined,
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
accessible={true}
|
|
940
|
-
collapsable={false}
|
|
941
|
-
focusable={true}
|
|
942
|
-
onBlur={[Function]}
|
|
943
|
-
onClick={[Function]}
|
|
944
|
-
onFocus={[Function]}
|
|
945
|
-
onResponderGrant={[Function]}
|
|
946
|
-
onResponderMove={[Function]}
|
|
947
|
-
onResponderRelease={[Function]}
|
|
948
|
-
onResponderTerminate={[Function]}
|
|
949
|
-
onResponderTerminationRequest={[Function]}
|
|
950
|
-
onStartShouldSetResponder={[Function]}
|
|
951
|
-
pointerEvents="none"
|
|
952
|
-
style={
|
|
953
|
-
[
|
|
954
|
-
[
|
|
955
|
-
{
|
|
956
|
-
"_container": {
|
|
957
|
-
"overflow": "hidden",
|
|
958
|
-
},
|
|
959
|
-
"_pressed": {
|
|
960
|
-
"bottom": 0,
|
|
961
|
-
"left": 0,
|
|
962
|
-
"right": 0,
|
|
963
|
-
"top": 0,
|
|
964
|
-
},
|
|
965
|
-
"alignItems": "center",
|
|
966
|
-
"alignSelf": "auto",
|
|
967
|
-
"container": {
|
|
968
|
-
"overflow": "hidden",
|
|
969
|
-
},
|
|
970
|
-
"display": "flex",
|
|
971
|
-
"flexDirection": "column",
|
|
972
|
-
"justifyContent": "center",
|
|
973
|
-
"overflow": "hidden",
|
|
974
|
-
"pressed": {
|
|
975
|
-
"bottom": 0,
|
|
976
|
-
"left": 0,
|
|
977
|
-
"right": 0,
|
|
978
|
-
"top": 0,
|
|
979
|
-
},
|
|
980
|
-
},
|
|
981
|
-
],
|
|
982
|
-
{
|
|
983
|
-
"opacity": 1,
|
|
984
|
-
},
|
|
985
|
-
]
|
|
986
|
-
}
|
|
987
|
-
value="/inspiration"
|
|
988
|
-
>
|
|
989
|
-
<View
|
|
990
|
-
accessibilityRole="button"
|
|
991
|
-
accessibilityState={
|
|
992
|
-
{
|
|
993
|
-
"busy": undefined,
|
|
994
|
-
"checked": undefined,
|
|
995
|
-
"disabled": undefined,
|
|
996
|
-
"expanded": undefined,
|
|
997
|
-
"selected": undefined,
|
|
998
|
-
}
|
|
999
|
-
}
|
|
1000
|
-
accessibilityValue={
|
|
1001
|
-
{
|
|
1002
|
-
"max": undefined,
|
|
1003
|
-
"min": undefined,
|
|
1004
|
-
"now": undefined,
|
|
1005
|
-
"text": undefined,
|
|
1006
|
-
}
|
|
1007
|
-
}
|
|
1008
|
-
accessible={true}
|
|
1009
|
-
collapsable={false}
|
|
1010
|
-
focusable={true}
|
|
1011
|
-
onBlur={[Function]}
|
|
1012
|
-
onClick={[Function]}
|
|
1013
|
-
onFocus={[Function]}
|
|
1014
|
-
onResponderGrant={[Function]}
|
|
1015
|
-
onResponderMove={[Function]}
|
|
1016
|
-
onResponderRelease={[Function]}
|
|
1017
|
-
onResponderTerminate={[Function]}
|
|
1018
|
-
onResponderTerminationRequest={[Function]}
|
|
1019
|
-
onStartShouldSetResponder={[Function]}
|
|
1020
|
-
pointerEvents="none"
|
|
1021
|
-
style={
|
|
1022
|
-
[
|
|
1023
|
-
[
|
|
1024
|
-
{
|
|
1025
|
-
"_container": {
|
|
1026
|
-
"overflow": "hidden",
|
|
1027
|
-
},
|
|
1028
|
-
"_pressed": {
|
|
1029
|
-
"bottom": 0,
|
|
1030
|
-
"left": 0,
|
|
1031
|
-
"right": 0,
|
|
1032
|
-
"top": 0,
|
|
1033
|
-
},
|
|
1034
|
-
"alignSelf": "center",
|
|
1035
|
-
"container": {
|
|
1036
|
-
"overflow": "hidden",
|
|
1037
|
-
},
|
|
1038
|
-
"marginBottom": 4,
|
|
1039
|
-
"overflow": "visible",
|
|
1040
|
-
"padding": 0,
|
|
1041
|
-
"pressed": {
|
|
1042
|
-
"bottom": 0,
|
|
1043
|
-
"left": 0,
|
|
1044
|
-
"right": 0,
|
|
1045
|
-
"top": 0,
|
|
1046
|
-
},
|
|
1047
|
-
},
|
|
1048
|
-
],
|
|
1049
|
-
{
|
|
1050
|
-
"opacity": 1,
|
|
1051
|
-
},
|
|
1052
|
-
]
|
|
1053
|
-
}
|
|
1054
|
-
>
|
|
1055
|
-
<View
|
|
1056
|
-
style={
|
|
1057
|
-
[
|
|
1058
|
-
{
|
|
1059
|
-
"position": "relative",
|
|
1060
|
-
},
|
|
1061
|
-
]
|
|
1062
|
-
}
|
|
1063
|
-
>
|
|
1064
|
-
<Text
|
|
1065
|
-
accessibilityElementsHidden={true}
|
|
1066
|
-
allowFontScaling={false}
|
|
1067
|
-
importantForAccessibility="no"
|
|
1068
|
-
selectable={false}
|
|
1069
|
-
style={
|
|
1070
|
-
[
|
|
1071
|
-
{
|
|
1072
|
-
"color": "#837C7C",
|
|
1073
|
-
"fontFamily": "auroraicons",
|
|
1074
|
-
"fontSize": 24,
|
|
1075
|
-
"fontStyle": "normal",
|
|
1076
|
-
"fontWeight": "normal",
|
|
1077
|
-
"height": 24,
|
|
1078
|
-
"width": 24,
|
|
1079
|
-
},
|
|
1080
|
-
]
|
|
1081
|
-
}
|
|
1082
|
-
>
|
|
1083
|
-
|
|
1084
|
-
</Text>
|
|
1085
|
-
<View
|
|
1086
|
-
collapsable={false}
|
|
1087
|
-
style={
|
|
1088
|
-
{
|
|
1089
|
-
"backgroundColor": "#F45545",
|
|
1090
|
-
"borderColor": "#FFFFFF",
|
|
1091
|
-
"borderRadius": 9999,
|
|
1092
|
-
"borderWidth": 2,
|
|
1093
|
-
"height": 10,
|
|
1094
|
-
"position": "absolute",
|
|
1095
|
-
"right": 0,
|
|
1096
|
-
"top": 0,
|
|
1097
|
-
"transform": [
|
|
1098
|
-
{
|
|
1099
|
-
"scale": 0,
|
|
1100
|
-
},
|
|
1101
|
-
],
|
|
1102
|
-
"width": 10,
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
/>
|
|
1106
|
-
</View>
|
|
1107
|
-
</View>
|
|
1108
|
-
<Text
|
|
1109
|
-
allowFontScaling={false}
|
|
1110
|
-
numberOfLines={1}
|
|
1111
|
-
selectable={false}
|
|
1112
|
-
style={
|
|
1113
|
-
[
|
|
1114
|
-
{
|
|
1115
|
-
"color": "#837C7C",
|
|
1116
|
-
"fontFamily": "AreaNormal-Semibold",
|
|
1117
|
-
"fontSize": 10,
|
|
1118
|
-
"letterSpacing": 0.1,
|
|
1119
|
-
"lineHeight": 14,
|
|
1120
|
-
"overflow": "hidden",
|
|
1121
|
-
"paddingBottom": 0,
|
|
1122
|
-
"paddingLeft": 0,
|
|
1123
|
-
"paddingRight": 0,
|
|
1124
|
-
"paddingTop": 0,
|
|
1125
|
-
"textAlign": "center",
|
|
1126
|
-
},
|
|
1127
|
-
]
|
|
1128
|
-
}
|
|
1129
|
-
>
|
|
1130
|
-
Inspiración
|
|
1131
|
-
</Text>
|
|
1132
|
-
</View>
|
|
1133
|
-
<View
|
|
1134
|
-
accessibilityRole="button"
|
|
1135
|
-
accessibilityState={
|
|
1136
|
-
{
|
|
1137
|
-
"busy": undefined,
|
|
1138
|
-
"checked": undefined,
|
|
1139
|
-
"disabled": undefined,
|
|
1140
|
-
"expanded": undefined,
|
|
1141
|
-
"selected": undefined,
|
|
1142
|
-
}
|
|
1143
|
-
}
|
|
1144
|
-
accessibilityValue={
|
|
1145
|
-
{
|
|
1146
|
-
"max": undefined,
|
|
1147
|
-
"min": undefined,
|
|
1148
|
-
"now": undefined,
|
|
1149
|
-
"text": undefined,
|
|
1150
|
-
}
|
|
1151
|
-
}
|
|
1152
|
-
accessible={true}
|
|
1153
|
-
collapsable={false}
|
|
1154
|
-
focusable={true}
|
|
1155
|
-
onBlur={[Function]}
|
|
1156
|
-
onClick={[Function]}
|
|
1157
|
-
onFocus={[Function]}
|
|
1158
|
-
onResponderGrant={[Function]}
|
|
1159
|
-
onResponderMove={[Function]}
|
|
1160
|
-
onResponderRelease={[Function]}
|
|
1161
|
-
onResponderTerminate={[Function]}
|
|
1162
|
-
onResponderTerminationRequest={[Function]}
|
|
1163
|
-
onStartShouldSetResponder={[Function]}
|
|
1164
|
-
pointerEvents="none"
|
|
1165
|
-
style={
|
|
1166
|
-
[
|
|
1167
|
-
[
|
|
1168
|
-
{
|
|
1169
|
-
"_container": {
|
|
1170
|
-
"overflow": "hidden",
|
|
1171
|
-
},
|
|
1172
|
-
"_pressed": {
|
|
1173
|
-
"bottom": 0,
|
|
1174
|
-
"left": 0,
|
|
1175
|
-
"right": 0,
|
|
1176
|
-
"top": 0,
|
|
1177
|
-
},
|
|
1178
|
-
"alignItems": "center",
|
|
1179
|
-
"alignSelf": "auto",
|
|
1180
|
-
"container": {
|
|
1181
|
-
"overflow": "hidden",
|
|
1182
|
-
},
|
|
1183
|
-
"display": "flex",
|
|
1184
|
-
"flexDirection": "column",
|
|
1185
|
-
"justifyContent": "center",
|
|
1186
|
-
"overflow": "hidden",
|
|
1187
|
-
"pressed": {
|
|
1188
|
-
"bottom": 0,
|
|
1189
|
-
"left": 0,
|
|
1190
|
-
"right": 0,
|
|
1191
|
-
"top": 0,
|
|
1192
|
-
},
|
|
1193
|
-
},
|
|
1194
|
-
],
|
|
1195
|
-
{
|
|
1196
|
-
"opacity": 1,
|
|
1197
|
-
},
|
|
1198
|
-
]
|
|
1199
|
-
}
|
|
1200
|
-
value="/messages"
|
|
1201
|
-
>
|
|
1202
|
-
<View
|
|
1203
|
-
accessibilityRole="button"
|
|
1204
|
-
accessibilityState={
|
|
1205
|
-
{
|
|
1206
|
-
"busy": undefined,
|
|
1207
|
-
"checked": undefined,
|
|
1208
|
-
"disabled": undefined,
|
|
1209
|
-
"expanded": undefined,
|
|
1210
|
-
"selected": undefined,
|
|
1211
|
-
}
|
|
1212
|
-
}
|
|
1213
|
-
accessibilityValue={
|
|
1214
|
-
{
|
|
1215
|
-
"max": undefined,
|
|
1216
|
-
"min": undefined,
|
|
1217
|
-
"now": undefined,
|
|
1218
|
-
"text": undefined,
|
|
1219
|
-
}
|
|
1220
|
-
}
|
|
1221
|
-
accessible={true}
|
|
1222
|
-
collapsable={false}
|
|
1223
|
-
focusable={true}
|
|
1224
|
-
onBlur={[Function]}
|
|
1225
|
-
onClick={[Function]}
|
|
1226
|
-
onFocus={[Function]}
|
|
1227
|
-
onResponderGrant={[Function]}
|
|
1228
|
-
onResponderMove={[Function]}
|
|
1229
|
-
onResponderRelease={[Function]}
|
|
1230
|
-
onResponderTerminate={[Function]}
|
|
1231
|
-
onResponderTerminationRequest={[Function]}
|
|
1232
|
-
onStartShouldSetResponder={[Function]}
|
|
1233
|
-
pointerEvents="none"
|
|
1234
|
-
style={
|
|
1235
|
-
[
|
|
1236
|
-
[
|
|
1237
|
-
{
|
|
1238
|
-
"_container": {
|
|
1239
|
-
"overflow": "hidden",
|
|
1240
|
-
},
|
|
1241
|
-
"_pressed": {
|
|
1242
|
-
"bottom": 0,
|
|
1243
|
-
"left": 0,
|
|
1244
|
-
"right": 0,
|
|
1245
|
-
"top": 0,
|
|
1246
|
-
},
|
|
1247
|
-
"alignSelf": "center",
|
|
1248
|
-
"container": {
|
|
1249
|
-
"overflow": "hidden",
|
|
1250
|
-
},
|
|
1251
|
-
"marginBottom": 4,
|
|
1252
|
-
"overflow": "visible",
|
|
1253
|
-
"padding": 0,
|
|
1254
|
-
"pressed": {
|
|
1255
|
-
"bottom": 0,
|
|
1256
|
-
"left": 0,
|
|
1257
|
-
"right": 0,
|
|
1258
|
-
"top": 0,
|
|
1259
|
-
},
|
|
1260
|
-
},
|
|
1261
|
-
],
|
|
1262
|
-
{
|
|
1263
|
-
"opacity": 1,
|
|
1264
|
-
},
|
|
1265
|
-
]
|
|
1266
|
-
}
|
|
1267
|
-
>
|
|
1268
|
-
<View
|
|
1269
|
-
style={
|
|
1270
|
-
[
|
|
1271
|
-
{
|
|
1272
|
-
"position": "relative",
|
|
1273
|
-
},
|
|
1274
|
-
]
|
|
1275
|
-
}
|
|
1276
|
-
>
|
|
1277
|
-
<Text
|
|
1278
|
-
accessibilityElementsHidden={true}
|
|
1279
|
-
allowFontScaling={false}
|
|
1280
|
-
importantForAccessibility="no"
|
|
1281
|
-
selectable={false}
|
|
1282
|
-
style={
|
|
1283
|
-
[
|
|
1284
|
-
{
|
|
1285
|
-
"color": "#837C7C",
|
|
1286
|
-
"fontFamily": "auroraicons",
|
|
1287
|
-
"fontSize": 24,
|
|
1288
|
-
"fontStyle": "normal",
|
|
1289
|
-
"fontWeight": "normal",
|
|
1290
|
-
"height": 24,
|
|
1291
|
-
"width": 24,
|
|
1292
|
-
},
|
|
1293
|
-
]
|
|
1294
|
-
}
|
|
1295
|
-
>
|
|
1296
|
-
|
|
1297
|
-
</Text>
|
|
1298
|
-
<View
|
|
1299
|
-
collapsable={false}
|
|
1300
|
-
style={
|
|
1301
|
-
{
|
|
1302
|
-
"backgroundColor": "#F45545",
|
|
1303
|
-
"borderColor": "#FFFFFF",
|
|
1304
|
-
"borderRadius": 9999,
|
|
1305
|
-
"borderWidth": 2,
|
|
1306
|
-
"height": 10,
|
|
1307
|
-
"position": "absolute",
|
|
1308
|
-
"right": 0,
|
|
1309
|
-
"top": 0,
|
|
1310
|
-
"transform": [
|
|
1311
|
-
{
|
|
1312
|
-
"scale": 1,
|
|
1313
|
-
},
|
|
1314
|
-
],
|
|
1315
|
-
"width": 10,
|
|
1316
|
-
}
|
|
1317
|
-
}
|
|
1318
|
-
/>
|
|
1319
|
-
</View>
|
|
1320
|
-
</View>
|
|
1321
|
-
<Text
|
|
1322
|
-
allowFontScaling={false}
|
|
1323
|
-
numberOfLines={1}
|
|
1324
|
-
selectable={false}
|
|
1325
|
-
style={
|
|
1326
|
-
[
|
|
1327
|
-
{
|
|
1328
|
-
"color": "#837C7C",
|
|
1329
|
-
"fontFamily": "AreaNormal-Semibold",
|
|
1330
|
-
"fontSize": 10,
|
|
1331
|
-
"letterSpacing": 0.1,
|
|
1332
|
-
"lineHeight": 14,
|
|
1333
|
-
"overflow": "hidden",
|
|
1334
|
-
"paddingBottom": 0,
|
|
1335
|
-
"paddingLeft": 0,
|
|
1336
|
-
"paddingRight": 0,
|
|
1337
|
-
"paddingTop": 0,
|
|
1338
|
-
"textAlign": "center",
|
|
1339
|
-
},
|
|
1340
|
-
]
|
|
1341
|
-
}
|
|
1342
|
-
>
|
|
1343
|
-
Mensajes
|
|
1344
|
-
</Text>
|
|
1345
|
-
</View>
|
|
1346
|
-
</View>
|
|
1347
|
-
</View>
|
|
1348
|
-
</View>
|
|
1349
|
-
`;
|