The `TimeInput` component doesn't show the entire ...
# compose-android
d
The
TimeInput
component doesn't show the entire character when the system font size is increased. Has anyone else experienced this issue? What are your thoughts/solutions?
Copy code
setContent {
            TimeInput(
                state = TimePickerState(7,7, true),
            )
        }
_LocalDensity_.current.fontScale
= 2.0
🙌 1