CircularProgressIndicatorTileSchema
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.
Triggers dispatched: none. The tile emits no trigger and is not clickable, so any events declared on it are never fired.
Notes: colors and stroke are Material defaults — only style (size, padding, background, …) is applied. Drive a determinate indicator by pushing new progress values with UpdateTiles.
Constructors
Link copied to clipboard
constructor(id: String, events: SerializableImmutableList<EventSchema>?, style: StyleSchema, searchableTerms: SerializableImmutableList<String>?, visibility: TileSchema.Visibility, progress: Float? = null)
Properties
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "searchableTerms")
Link copied to clipboard
Link copied to clipboard