Revize 084bae5d
Přidáno uživatelem Michal Schwob před více než 1 rok
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