-
@Stable() public interface SeekerColorsRepresents the colors used by different parts of Seeker in different states.
See SeekerDefaults.seekerColors for default implementation.
-
-
Method Summary
Modifier and Type Method Description abstract State<Color>trackColor(Boolean enabled)Represents the color used for the seeker's track, depending on enabled. abstract State<Color>thumbColor(Boolean enabled)Represents the color used for the seeker's thumb, depending on enabled. abstract State<Color>progressColor(Boolean enabled)Represents the color used for the seeker's progress indicator, depending on enabled. abstract State<Color>readAheadColor(Boolean enabled)Represents the color used for the seeker's read ahead indicator, depending on enabled. -
-
Method Detail
-
trackColor
@Composable() abstract State<Color> trackColor(Boolean enabled)
Represents the color used for the seeker's track, depending on enabled.
- Parameters:
enabled- whether the Seeker is enabled or not
-
thumbColor
@Composable() abstract State<Color> thumbColor(Boolean enabled)
Represents the color used for the seeker's thumb, depending on enabled.
- Parameters:
enabled- whether the Seeker is enabled or not
-
progressColor
@Composable() abstract State<Color> progressColor(Boolean enabled)
Represents the color used for the seeker's progress indicator, depending on enabled.
- Parameters:
enabled- whether the Seeker is enabled or not
-
readAheadColor
@Composable() abstract State<Color> readAheadColor(Boolean enabled)
Represents the color used for the seeker's read ahead indicator, depending on enabled.
- Parameters:
enabled- whether the Seeker is enabled or not
-
-
-
-