I have a simple loading composable:
@Composable
fun Loading() {
CircularProgressIndicator()
}
I want it centered in the center of the screen. I've searched the docs and I've found layouts for building rows and columns, but I haven't found anything to center a view in the absolute middle of the screen.
How can be achieved?