Skip to content

Commit

Permalink
set includeFontPadding false for fixed TextInput height on Android (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
khuddite authored Nov 9, 2024
1 parent a908308 commit a6d009d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/view/com/composer/text-input/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,11 @@ export const TextInput = forwardRef(function TextInputImpl(
style={[
inputTextStyle,
a.w_full,
{textAlignVertical: 'top', minHeight: 60},
{
textAlignVertical: 'top',
minHeight: 60,
includeFontPadding: false,
},
]}
{...props}>
{textDecorated}
Expand Down

0 comments on commit a6d009d

Please sign in to comment.