Package 

Interface SeekerColors

    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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