mirror of
https://github.com/tooot-app/app
synced 2025-04-25 07:28:41 +02:00
Fixed #506
This commit is contained in:
parent
196fb05dea
commit
413bb4b76f
@ -73,8 +73,6 @@ const ComposeEditAttachmentRoot: React.FC<Props> = ({ index }) => {
|
|||||||
color: colors.primaryDefault
|
color: colors.primaryDefault
|
||||||
}}
|
}}
|
||||||
onFocus={() => scrollViewRef.current?.scrollToEnd()}
|
onFocus={() => scrollViewRef.current?.scrollToEnd()}
|
||||||
autoCapitalize='none'
|
|
||||||
autoCorrect={false}
|
|
||||||
maxLength={1500}
|
maxLength={1500}
|
||||||
multiline
|
multiline
|
||||||
onChangeText={(e) =>
|
onChangeText={(e) =>
|
||||||
|
@ -35,8 +35,6 @@ const ComposeSpoilerInput: React.FC = () => {
|
|||||||
fontSize: adaptedFontsize,
|
fontSize: adaptedFontsize,
|
||||||
lineHeight: adaptedLineheight
|
lineHeight: adaptedLineheight
|
||||||
}}
|
}}
|
||||||
autoCapitalize='none'
|
|
||||||
autoCorrect={false}
|
|
||||||
autoFocus
|
autoFocus
|
||||||
enablesReturnKeyAutomatically
|
enablesReturnKeyAutomatically
|
||||||
multiline
|
multiline
|
||||||
|
@ -71,12 +71,12 @@ const TabSharedSearch: React.FC<TabSharedStackScreenProps<'Tab-Shared-Search'>>
|
|||||||
})}
|
})}
|
||||||
autoCapitalize='none'
|
autoCapitalize='none'
|
||||||
autoCorrect={false}
|
autoCorrect={false}
|
||||||
clearButtonMode='never'
|
clearButtonMode='always'
|
||||||
keyboardType='web-search'
|
keyboardType='web-search'
|
||||||
onSubmitEditing={({ nativeEvent: { text } }) => navigation.setParams({ text })}
|
onSubmitEditing={({ nativeEvent: { text } }) => navigation.setParams({ text })}
|
||||||
placeholder={t('shared.search.header.placeholder')}
|
placeholder={t('shared.search.header.placeholder')}
|
||||||
placeholderTextColor={colors.secondary}
|
placeholderTextColor={colors.secondary}
|
||||||
returnKeyType='go'
|
returnKeyType='search'
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user