File tree Expand file tree Collapse file tree
app/src/main/java/org/schabi/newpipe/about Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import androidx.compose.runtime.mutableIntStateOf
2424import androidx.compose.runtime.saveable.rememberSaveable
2525import androidx.compose.runtime.setValue
2626import androidx.compose.ui.Modifier
27+ import androidx.compose.ui.graphics.Color
2728import androidx.compose.ui.res.stringResource
2829import androidx.compose.ui.tooling.preview.Preview
2930import androidx.compose.ui.unit.dp
@@ -50,7 +51,7 @@ fun AboutScreen(padding: PaddingValues) {
5051 TabRow (selectedTabIndex = tabIndex) {
5152 TITLES .forEachIndexed { index, titleId ->
5253 Tab (
53- text = { Text (text = stringResource(titleId)) },
54+ text = { Text (text = stringResource(titleId), color = Color . White ) },
5455 selected = tabIndex == index,
5556 onClick = { tabIndex = index }
5657 )
You can’t perform that action at this time.
0 commit comments