diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-20 19:08:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 19:08:48 -0500 |
commit | c1d454b7cfe6a7ec107b39483df9cb0fb64e1c76 (patch) | |
tree | 04e44361d52f7a8f0dc0dc08793202668edbbf6f /src/view/com/composer/text-input/TextInput.tsx | |
parent | 67e4882bb372bc45d178e3eacc409cdbf60f1344 (diff) | |
download | voidsky-c1d454b7cfe6a7ec107b39483df9cb0fb64e1c76.tar.zst |
Fix sizing on the composer text input (#331)
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.tsx')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 877945b96..e72b41f0a 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -210,10 +210,11 @@ export const TextInput = React.forwardRef( const styles = StyleSheet.create({ container: { - width: '100%', + flex: 1, }, textInput: { flex: 1, + width: '100%', minHeight: 80, padding: 5, paddingBottom: 20, |