Skip to content

Instantly share code, notes, and snippets.

@ScottPierce
Created February 12, 2021 02:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScottPierce/2bd2624305c89cd8d3da3deb845044c3 to your computer and use it in GitHub Desktop.
Save ScottPierce/2bd2624305c89cd8d3da3deb845044c3 to your computer and use it in GitHub Desktop.
Jetpack Compose Screen Rotation
@Composable
fun RotateScreen(
rotation: ScreenRotation,
modifier: Modifier = Modifier,
contentAlignment: Alignment = Alignment.TopStart,
content: @Composable () -> Unit
) {
BoxWithConstraints {
val width: Dp
val height: Dp
when (rotation) {
ScreenRotation.LEFT_90_DEGREES, ScreenRotation.RIGHT_90_DEGREES -> {
width = maxHeight
height = maxWidth
}
else -> {
width = maxWidth
height = maxHeight
}
}
Box(
modifier = modifier
.rotate(rotation.degrees)
.width(width)
.height(height),
contentAlignment = contentAlignment
) {
content()
}
}
}
enum class ScreenRotation(val degrees: Float) {
LEFT_90_DEGREES(-90f), RIGHT_90_DEGREES(90f), NORMAL(0f)
}
@ScottPierce
Copy link
Author

A simple Composable to manually rotate the screen with Jetpack Compose, without rotating the Activity.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment