ILYAS_Kerbal
ILYAS_Kerbal

Reputation: 1445

Jetpack compose remove default Text padding

How to remove the default Text padding.

enter image description here

I went through this article: https://medium.com/androiddevelopers/fixing-font-padding-in-compose-text-768cd232425b

But, couldn't achieve the desired look.

androidx-compose-bom = "2023.10.01"

Font used: Cairo

Upvotes: 0

Views: 133

Answers (1)

Mohammad Hanif Shaikh
Mohammad Hanif Shaikh

Reputation: 1491

platformStyle = PlatformTextStyle(
            includeFontPadding = false )

Refrence

Upvotes: 0

Related Questions