Hello everyone, how can I get the screen width in ...
# compose
d
Hello everyone, how can I get the screen width in px inside of a composable?
s
You can use BoxWithConstraint.
d
LocalContext.current.resources.displayMetrics.widthPixels
👍 2
d
Great, thank you all!