We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee816f5 commit 6d72933Copy full SHA for 6d72933
android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/FilterScreen.kt
@@ -21,6 +21,7 @@ import androidx.compose.runtime.saveable.rememberSaveable
21
import androidx.compose.runtime.setValue
22
import androidx.compose.ui.Alignment
23
import androidx.compose.ui.Modifier
24
+import androidx.compose.ui.graphics.Color
25
import androidx.compose.ui.res.painterResource
26
import androidx.compose.ui.res.stringResource
27
import androidx.compose.ui.text.style.TextAlign
@@ -233,7 +234,7 @@ private fun TopBar(onBackClick: () -> Unit) {
233
234
Icon(
235
painter = painterResource(id = R.drawable.icon_back),
236
contentDescription = null,
- tint = Color.Unspecified,
237
+ tint = MaterialTheme.colorScheme.onPrimary,
238
)
239
}
240
Text(
0 commit comments