mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Center CurcularProgressIndicator in LoadingScreen (#7032)
				
					
				
			* Center `CurcularProgressIndicator` in `LoadingScreen` * Fix Import and move modifier to top
This commit is contained in:
		| @@ -5,12 +5,16 @@ import androidx.compose.foundation.layout.fillMaxSize | ||||
| import androidx.compose.foundation.layout.size | ||||
| import androidx.compose.material3.CircularProgressIndicator | ||||
| import androidx.compose.runtime.Composable | ||||
| import androidx.compose.ui.Alignment | ||||
| import androidx.compose.ui.Modifier | ||||
| import androidx.compose.ui.unit.dp | ||||
|  | ||||
| @Composable | ||||
| fun LoadingScreen() { | ||||
|     Box(modifier = Modifier.fillMaxSize()) { | ||||
|     Box( | ||||
|         modifier = Modifier.fillMaxSize(), | ||||
|         contentAlignment = Alignment.Center, | ||||
|     ) { | ||||
|         CircularProgressIndicator(modifier = Modifier.size(64.dp)) | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user