mirror of
https://github.com/tooot-app/app
synced 2025-02-01 19:16:56 +01:00
Fix iOS quick type bar
https://reactnative.dev/blog/2021/09/01/preparing-your-app-for-iOS-15-and-android-12#quicktype-bar
This commit is contained in:
parent
50151f75f6
commit
40a5c36bb0
@ -170,7 +170,6 @@ const ComponentInstance: React.FC<Props> = ({
|
|||||||
]}
|
]}
|
||||||
onChangeText={onChangeText}
|
onChangeText={onChangeText}
|
||||||
autoCapitalize='none'
|
autoCapitalize='none'
|
||||||
autoCorrect={false}
|
|
||||||
clearButtonMode='never'
|
clearButtonMode='never'
|
||||||
keyboardType='url'
|
keyboardType='url'
|
||||||
textContentType='URL'
|
textContentType='URL'
|
||||||
@ -183,6 +182,8 @@ const ComponentInstance: React.FC<Props> = ({
|
|||||||
onFocus: () =>
|
onFocus: () =>
|
||||||
setTimeout(() => scrollViewRef.current?.scrollToEnd(), 150)
|
setTimeout(() => scrollViewRef.current?.scrollToEnd(), 150)
|
||||||
})}
|
})}
|
||||||
|
autoCorrect={false}
|
||||||
|
spellCheck={false}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
type='text'
|
type='text'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user