Package-level declarations

Types

Link copied to clipboard
@Serializable
@SerialName(value = "BottomAppBar")
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
@Serializable
@SerialName(value = "TopAppBar")
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.DEFAULTTopAppBar, TopAppBarStyle.CENTER_ALIGNEDCenterAlignedTopAppBar, TopAppBarStyle.MEDIUMMediumTopAppBar, TopAppBarStyle.LARGELargeTopAppBar.