Update subtitle color

This commit is contained in:
Aleksandras Kostarevas 2024-05-14 18:39:56 -05:00
parent 127e6308f9
commit 944c7a0723
2 changed files with 3 additions and 1 deletions

View File

@ -705,6 +705,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element,
mStartTime = System.currentTimeMillis();
mIsSlidingCursor = key.getCode() == Constants.CODE_DELETE || key.getCode() == Constants.CODE_SPACE;
mCurrentKey = key;
}
}

View File

@ -28,6 +28,7 @@ import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.ExposedDropdownMenuBox
import androidx.compose.material3.ExposedDropdownMenuDefaults
import androidx.compose.material3.Icon
import androidx.compose.material3.LocalContentColor
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.RadioButton
import androidx.compose.material3.Slider
@ -161,7 +162,7 @@ fun SettingItem(
Text(
subtitle,
style = Typography.bodySmall,
color = MaterialTheme.colorScheme.outline
color = LocalContentColor.current.copy(alpha = 0.5f)
)
}
}