Created
January 16, 2025 10:12
-
-
Save MelSardes/969f3c8302e1ab481e81c8d35abbcb01 to your computer and use it in GitHub Desktop.
Check if phone is in landscape
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun isLandscape(): Boolean { | |
val configuration = LocalConfiguration.current | |
return configuration.orientation == Configuration.ORIENTATION_LANDSCAPE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment