I'm developing with jetpack compose. When I use includePadding = false, in compose, the feature is used like below
platformStyle = PlatformTextStyle(includeFontPadding = false)
But the jetpack compose docs say like below,
includeFontPadding was added to Android in order to prevent clipping issues on tall scripts.
However that issue has been fixed since Android 28.
Jetpack Compose backports the fix for Android versions prior to Android 28.
Therefore the original reason why includeFontPadding was needed in invalid on Compose.
This configuration was added for migration of the apps in case some code or
design was relying includeFontPadding=true behavior and will be removed
As above mentioned, I'm confused with whether to use includePadding. Is there other way to use includePadding = false or Is it not recommended to use includePadding = false?