In a Compose MP app on iOS I would like to get a U...
# compose-ios
t
In a Compose MP app on iOS I would like to get a UIKit point/rect to show a native popup on a Compose clickable event. Anybody have an examples of this, if it is even possible?
m
If you mean showing a native iOS dialog you can use Calf or you can take a look at the code if you want to know more about using native iOS Views in Comopse MP https://github.com/MohamedRejeb/Calf?tab=readme-ov-file#adaptivealertdialog
i
Copy code
Modifier.onGloballyPositioned { it.positionInWindow() }
👍 1