summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/CheckboxCell.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/CheckboxCell.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/CheckboxCell.kt
index fe270ba445..65a3399631 100644
--- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/CheckboxCell.kt
+++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/CheckboxCell.kt
@@ -23,7 +23,7 @@ import net.mullvad.mullvadvpn.lib.theme.Dimens
@Preview
@Composable
private fun PreviewCheckboxCell() {
- AppTheme { CheckboxCell(providerName = "", checked = false, onCheckedChange = {}) }
+ AppTheme { CheckboxCell(providerName = "Provider 1", checked = false, onCheckedChange = {}) }
}
@Composable
@@ -54,7 +54,7 @@ internal fun CheckboxCell(
Text(
text = providerName,
style = MaterialTheme.typography.labelLarge,
- color = MaterialTheme.colorScheme.onSecondary,
+ color = MaterialTheme.colorScheme.onBackground,
modifier =
Modifier.weight(1f)
.padding(top = Dimens.mediumPadding, bottom = Dimens.mediumPadding)