style: move error color to M3 theme code

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2024-08-17 23:27:21 +02:00
parent b40a1ea438
commit b0351f016e
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -133,7 +133,7 @@ fun ContactsList(contactsUiState: ContactsUiState, contactsViewModel: ContactsVi
is ContactsUiState.Error -> {
val errorMessage = contactsUiState.message
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Text(text = "Error: $errorMessage", color = Color.Red)
Text(text = "Error: $errorMessage", color = MaterialTheme.colorScheme.error)
}
}
}
@ -230,7 +230,7 @@ fun ContactItemRow(contact: AutocompleteUser, contactsViewModel: ContactsViewMod
is RoomUiState.Error -> {
val errorMessage = (roomUiState as RoomUiState.Error).message
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Text(text = "Error: $errorMessage", color = Color.Red)
Text(text = "Error: $errorMessage", color = MaterialTheme.colorScheme.error)
}
}
is RoomUiState.None -> {}