In my iOS specific code, Kotlin returns `UIScreen....
# multiplatform
j
In my iOS specific code, Kotlin returns
UIScreen.mainScreen.bounds.size
as an
Int
, but it’s really a
CGSize
. I need to get a width and height for the screen. How can I get the width and height?
1