Skip to content

Instantly share code, notes, and snippets.

@MelSardes
Created January 16, 2025 10:12
Show Gist options
  • Save MelSardes/969f3c8302e1ab481e81c8d35abbcb01 to your computer and use it in GitHub Desktop.
Save MelSardes/969f3c8302e1ab481e81c8d35abbcb01 to your computer and use it in GitHub Desktop.
Check if phone is in landscape
@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