Olivier Patry
03/22/2021, 5:10 PMView.onSizeChanged()
), what is the DPI of the screen where my "view" is (≃`Context.resources.displayMetrics`)
→ I'm aware there is no such "view" in the 100% Compose world, what I'd like is the have such thing within the layout for the result of a given composable
Slack ConversationOlivier Patry
03/22/2021, 5:10 PMTimo Drick
03/22/2021, 6:40 PM.onGloballyPositioned {
val rootOffset = it.localToWindow(Offset.Zero)
imagePosition = Rect(rootOffset, it.size.toSize())
}
Olivier Patry
03/22/2021, 9:50 PM