Let's say I have the following code: ``` R...
# compose-desktop
y
Let's say I have the following code:
Copy code
Row(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?
z
Modifier.onSizeChanged
y
thanks