jannis
12/06/2021, 3:47 PMLinearProgressIndicator
, meaning full height, small width, animating from top to bottom? I tried to simply rotating it by 90°, which surprisingly worked somehow, e.g.:
Modifier
.height(8.dp)
.fillMaxWidth()
.graphicsLayer {
rotationZ = 90f
transformOrigin = TransformOrigin(0f, 0f)
}
But it seems limited to the width of the Composable, hence not filling the whole height.
Any other suggestions 😅 ?mcpiroman
12/06/2021, 5:38 PMjannis
12/07/2021, 8:45 AM