fix clear button in input (#5650)

Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
Hailey
2024-10-08 11:45:04 -07:00
committed by GitHub
parent 2ab95124dd
commit 3da4f9b170
+9 -1
View File
@@ -23,6 +23,7 @@ export const SearchInput = React.forwardRef<TextInput, SearchInputProps>(
function SearchInput({value, label, onClearText, ...rest}, ref) {
const t = useTheme()
const {_} = useLingui()
const showClear = value && value.length > 0
return (
<View style={[a.w_full, a.relative]}>
@@ -41,11 +42,18 @@ export const SearchInput = React.forwardRef<TextInput, SearchInputProps>(
autoCorrect={false}
autoComplete="off"
autoCapitalize="none"
style={[
showClear
? {
paddingRight: 24,
}
: {},
]}
{...rest}
/>
</TextField.Root>
{value && value.length > 0 && (
{showClear && (
<View
style={[
a.absolute,