CustomizeDialog: Correct color of text field content

This commit is contained in:
Patryk Michalik
2021-10-23 15:17:59 +02:00
parent ac2dfd86e4
commit 8780e7d79f

View File

@@ -76,7 +76,8 @@ fun CustomizeDialog(
},
singleLine = true,
colors = TextFieldDefaults.outlinedTextFieldColors(
unfocusedBorderColor = MaterialTheme.colors.onSurface.copy(alpha = 0.12F)
unfocusedBorderColor = MaterialTheme.colors.onSurface.copy(alpha = 0.12F),
textColor = MaterialTheme.colors.onSurface
),
shape = MaterialTheme.shapes.large,
label = { Text(text = stringResource(id = R.string.label)) },