Home
last modified time | relevance | path

Searched refs:TrackComponent (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/
DPlatformSlider.kt156 private enum class TrackComponent(val zIndex: Float) { class
181 modifier = Modifier.layoutId(TrackComponent.Background), in Track()
191 modifier = Modifier.layoutId(TrackComponent.Icon).clip(CircleShape), in Track()
223 Modifier.layoutId(TrackComponent.Label) in Track()
331 .fastFirst { it.layoutId == TrackComponent.Background } in measure()
336 .fastFirstOrNull { it.layoutId == TrackComponent.Icon } in measure()
350 .fastFirstOrNull { it.layoutId == TrackComponent.Label } in measure()
392 backgroundPlaceable.placeRelative(0, 0, TrackComponent.Background.zIndex) in measure()
394 iconPlaceable?.placeRelative(0, 0, TrackComponent.Icon.zIndex) in measure()
395 labelPlaceable?.placeRelative(0, 0, TrackComponent.Label.zIndex) in measure()