Skip to content

Instantly share code, notes, and snippets.

View vladleesi's full-sized avatar
🏠
Working from home

Vladislav Kochetov vladleesi

🏠
Working from home
View GitHub Profile
@vladleesi
vladleesi / VerticalText.kt
Last active January 27, 2026 05:22
Vertical text composable for Jetpack Compose with correct width handling.
/**
* Displays text vertically by rotating and laying out each character individually.
*
* Fixes the layout issue of simple rotation, which preserves the original width.
* Useful when native vertical text layout is not available.
*/
@Composable
fun VerticalText(
text: String,
modifier: Modifier = Modifier,