diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-06 16:48:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 16:48:05 -0500 |
commit | 1fa9402453d4de5577d4f7fdb0b4d807121d033c (patch) | |
tree | 020a91b58af78fa03d3728e431e3e251b0cf4ce9 /src/view/com/composer/text-input | |
parent | b7648cfe739db08521f3af53785c219466119087 (diff) | |
download | voidsky-1fa9402453d4de5577d4f7fdb0b4d807121d033c.tar.zst |
Fix darkmode placeholder text in composer (#406)
* Remove old comment * Fix darkmode placeholder text in composer (close #401)
Diffstat (limited to 'src/view/com/composer/text-input')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index ec2186572..bd536e1c3 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -201,6 +201,7 @@ export const TextInput = React.forwardRef( onPaste={onPaste} onSelectionChange={onSelectionChange} placeholder={placeholder} + placeholderTextColor={pal.colors.textLight} keyboardAppearance={theme.colorScheme} multiline style={[pal.text, styles.textInput, styles.textInputFormatting]}> |