Revize 084bae5d
Přidáno uživatelem Michal Schwob před více než 1 rok
app.json | ||
---|---|---|
32 | 32 |
"projectId": "9cbe973a-6a5e-4b5e-85dd-02a80f7e38cc" |
33 | 33 |
} |
34 | 34 |
}, |
35 |
"plugins": [ |
|
36 |
["expo-build-properties", { |
|
37 |
"android": { |
|
38 |
"usesClearTextTraffic": true |
|
39 |
}, |
|
40 |
"ios": { |
|
41 |
"usesNonExemptEncryption": false |
|
42 |
} |
|
43 |
}] |
|
44 |
], |
|
35 | 45 |
"owner": "mschwob" |
36 | 46 |
} |
37 | 47 |
} |
src/pages/LoginPage.tsx | ||
---|---|---|
9 | 9 |
Button, |
10 | 10 |
HStack, |
11 | 11 |
Text, |
12 |
KeyboardAvoidingView, useToast |
|
12 |
KeyboardAvoidingView, useToast, ScrollView
|
|
13 | 13 |
} from "native-base" |
14 | 14 |
import { useCallback, useEffect, useState } from "react" |
15 | 15 |
import { useDispatch, useSelector } from "react-redux" |
... | ... | |
88 | 88 |
Please log in to continue |
89 | 89 |
</Text> |
90 | 90 |
{ lastError && ( |
91 |
<Text |
|
92 |
mt="1" |
|
93 |
textAlign="center" |
|
94 |
color="error.500" |
|
95 |
> |
|
96 |
{ lastError } |
|
97 |
</Text> |
|
91 |
<ScrollView> |
|
92 |
<Text |
|
93 |
mt="1" |
|
94 |
textAlign="center" |
|
95 |
color="error.500" |
|
96 |
> |
|
97 |
{ lastError } |
|
98 |
</Text> |
|
99 |
</ScrollView> |
|
98 | 100 |
) } |
99 | 101 |
|
100 | 102 |
<VStack space={ 3 } > |
Také k dispozici: Unified diff
DEBUG: Added support for non HTTPS endpoints.
re #10822