Lilly
06/30/2022, 9:37 PMunselectedContentColor
of Tab
is not respected. Do I miss something or is this a bug?
Tab(
selected = true,
text = { Text(stringResource(section.stringRes)) },
onClick = { selectedTabIndex = i },
selectedContentColor = LightGreen600,
unselectedContentColor = Color.Red
)
Stylianos Gakis
06/30/2022, 9:43 PMselected = true
tbf. Maybe post a snippet of what all of it looks like in your code?Lilly
06/30/2022, 9:45 PMselected
parameter 🤦♀️ Thanks for the notice. Has to be:
selected = selectedTabIndex == i
Stylianos Gakis
06/30/2022, 9:52 PM