-
@Stable() public interface SeekerDimensionsRepresents the dimensions used by different parts of Seeker in different states.
See SeekerDefaults.seekerDimensions for default implementation.
-
-
Method Summary
Modifier and Type Method Description abstract State<Dp>trackHeight()Represents the height used for the seeker's track. abstract State<Dp>progressHeight()Represents the height used for the seeker's progress indicator. abstract State<Dp>gap()Represents the gap used between two segments in seeker's track. abstract State<Dp>thumbRadius()Represents the radius used for seeker's thumb. -
-
Method Detail
-
trackHeight
@Composable() abstract State<Dp> trackHeight()
Represents the height used for the seeker's track.
-
progressHeight
@Composable() abstract State<Dp> progressHeight()
Represents the height used for the seeker's progress indicator.
-
gap
@Composable() abstract State<Dp> gap()
Represents the gap used between two segments in seeker's track.
-
thumbRadius
@Composable() abstract State<Dp> thumbRadius()
Represents the radius used for seeker's thumb.
-
-
-
-