I have a simple compose function i want to put a circularprogessindicator in the middle of the screen at 80dp x 80dp, its aligned to the top and takes up the full width.
@Composable
fun MyCircularProgress() {
CircularProgressIndicator(
modifier = Modifier.size(80.dp,80.dp)
)
}
why isn't the modifier working