Qamar Khan
06/02/2023, 8:29 PMplatformStyle = PlatformTextStyle(
includeFontPadding = false
)
'constructor PlatformTextStyle(Boolean = ...)' is deprecated. includeFontPadding was added to Android in order to prevent clipping issues on tall scripts. However that issue has been fixed since Android 28. Compose backports the fix for Android versions prior to Android 28. Therefore the original reason why includeFontPadding was needed is 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.
Any solution how to fix this, couldn’t found the best solution,
#compose-androidKirill Grouchnikov
06/02/2023, 9:52 PMStylianos Gakis
06/03/2023, 9:51 AMColton Idle
06/03/2023, 6:45 PM