Hi, I found a issue that occurred using `paddingFr...
# compose
l
Hi, I found a issue that occurred using
paddingFromBaseline
in Text. I saw this document and wrote code as below
Copy code
@Composable
fun TwoTexts(...) {
    Row(modifier.height(IntrinscisSize.Min) {
        // skipped other modifiers
        Text(text = "Hi", modifier = modifier.paddingFromBaseline(top = 26.sp, bottom = 10.sp) 
        Divider(...)
        Text(text = "there", ...)
    }
}
// TextSize = 24.sp
// LineHeight = 36.sp
But ui rendered differently. I think that text measured by
paddingFromBaseline
even if it's smaller than Baseline value Is this the result intended by IntrinsicSize.Min? Please look at pictures below Thanks!
🧵 1