From c1d454b7cfe6a7ec107b39483df9cb0fb64e1c76 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 20 Mar 2023 19:08:48 -0500 Subject: [PATCH] Fix sizing on the composer text input (#331) --- src/view/com/composer/text-input/TextInput.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 877945b9..e72b41f0 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,