Moved to https://github.com/vladleesi/license-badge-showcase
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
| /** | |
| * 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, |