Hi, anyone experiencing the text is not centered o...
# compose-ios
l
Hi, anyone experiencing the text is not centered on iOS if the letterspacing is added?
Copy code
Text(
    modifier = Modifier
        .background(Color.Yellow)
        .padding(8.dp),
    text = "1234",
    letterSpacing = 16.sp,
    fontSize =  20.sp,
)
The first image is iOS and the second one is Android.
🤔 1
j
What happens if you set the
textAlign = TextAlign.Center
?
l
That doesn't help. I suspect how the letter spacing is handled on iOS under the hood.