Fix android datepicker height (#7804)

* fix datepicker height

* fix suffixtext clipping
This commit is contained in:
Samuel Newman
2025-02-21 11:10:51 -08:00
committed by GitHub
parent 3b4f1e91e3
commit e6bfeb1bab
2 changed files with 11 additions and 22 deletions
@@ -1,7 +1,7 @@
import {Pressable, View} from 'react-native'
import {useLingui} from '@lingui/react'
import {android, atoms as a, useTheme, web} from '#/alf'
import {atoms as a, native, useTheme, web} from '#/alf'
import * as TextField from '#/components/forms/TextField'
import {useInteractionState} from '#/components/hooks/useInteractionState'
import {CalendarDays_Stroke2_Corner0_Rounded as CalendarDays} from '#/components/icons/CalendarDays'
@@ -60,16 +60,16 @@ export function DateFieldButton({
onBlur={onBlur}
style={[
{
paddingTop: 12,
paddingBottom: 12,
paddingLeft: 14,
paddingRight: 14,
borderColor: 'transparent',
borderWidth: 2,
},
android({
minHeight: 57.5,
native({
paddingTop: 10,
paddingBottom: 10,
}),
web(a.py_md),
a.flex_row,
a.flex_1,
a.w_full,