InspectableValue
Kotlin
|Java
interface InspectableValue
androidx.compose.ui.platform.InspectableValue |
A compose value that is inspectable by tools. It gives access to private parts of a value.
Summary
Properties | |
---|---|
open Sequence<ValueElement> |
The elements of a compose value. |
open String? |
Use this name as the reference name shown in tools of this value if there is no explicit reference name given to the value. |
open Any? |
Use this value as a readable representation of the value. |
Properties
inspectableElements
open val inspectableElements: Sequence<ValueElement>
The elements of a compose value.
nameFallback
open val nameFallback: String?
Use this name as the reference name shown in tools of this value if there is no explicit reference name given to the value. Example: a modifier in a modifier list.
valueOverride
open val valueOverride: Any?
Use this value as a readable representation of the value.