Yan Pujante
03/21/2021, 3:11 PMRow(Modifier.background(color = MaterialTheme.colors.primary)) {
Text(
tabSelected.toString(),
color = MaterialTheme.colors.onPrimary,
style = MaterialTheme.typography.h6,
modifier = Modifier.padding(10.dp).weight(1f)
)
}
How can I get the size (width and height) of the row after it is rendered?Zach Klippenstein (he/him) [MOD]
03/21/2021, 3:12 PMModifier.onSizeChanged
Yan Pujante
03/21/2021, 3:13 PM