diff options
author | Hailey <me@haileyok.com> | 2024-09-27 15:26:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 15:26:28 -0700 |
commit | 587c0c625752964d8ce64faf1d329dce3c834a5c (patch) | |
tree | 8a345e754db3536b8d0abf875b67f0c6e200d47d /src/view/com/composer/text-input/TextInput.tsx | |
parent | 4b5d6e6efb09a714d82e2093dec39c85400a2de6 (diff) | |
download | voidsky-587c0c625752964d8ce64faf1d329dce3c834a5c.tar.zst |
Rework native autocomplete (#5521)
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.tsx')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 3df9cfca4..39baa2cb6 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -245,7 +245,11 @@ export const TextInput = forwardRef(function TextInputImpl( multiline scrollEnabled={false} numberOfLines={4} - style={[inputTextStyle, a.w_full, {textAlignVertical: 'top'}]} + style={[ + inputTextStyle, + a.w_full, + {textAlignVertical: 'top', minHeight: 60}, + ]} {...props}> {textDecorated} </PasteInput> |