set includeFontPadding false for fixed TextInput height on Android (#6170)

This commit is contained in:
khuddite
2024-11-08 19:10:04 -05:00
committed by GitHub
parent a908308810
commit a6d009d06b
@@ -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}