Package-level declarations
Types
Link copied to clipboard
data class CircularProgressIndicatorTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val progress: Float? = null) : TileSchema
Renders a Material 3 CircularProgressIndicator. When progress is null the indicator is indeterminate (endless spinner); when set, it is determinate and shows that fraction, where 0f is empty and 1f is complete.
Link copied to clipboard
data class LinearProgressIndicatorTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val progress: Float? = null) : TileSchema
Renders a Material 3 LinearProgressIndicator. When progress is null the indicator is indeterminate (endless sweep); when set, it is determinate and shows that fraction, where 0f is empty and 1f is complete.