Package-level declarations
Types
Link copied to clipboard
data class BottomAppBarTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val actions: SerializableImmutableList<TileSchema>, val floatingActionButton: TileSchema? = null) : TileSchema
Renders a Material 3 BottomAppBar with actions laid out in a RowScope on the leading side and an optional floatingActionButton docked at the trailing edge (any tile, typically a FloatingActionButton).
Link copied to clipboard
data class TopAppBarTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val title: TileSchema, val navigationIcon: TileSchema? = null, val actions: SerializableImmutableList<TileSchema>? = null, val barStyle: TopAppBarTileSchema.TopAppBarStyle = TopAppBarStyle.DEFAULT) : TileSchema
Renders a Material 3 top app bar. barStyle picks the composable: TopAppBarStyle.DEFAULT → TopAppBar, TopAppBarStyle.CENTER_ALIGNED → CenterAlignedTopAppBar, TopAppBarStyle.MEDIUM → MediumTopAppBar, TopAppBarStyle.LARGE → LargeTopAppBar.