SearchResultItemContent

Interface defining all parts of SearchResultItemComposable.

Allows users to customize individual parts by providing custom implementations for specific ones (e.g., custom colors, icons, or completely replacing the part).

Use DefaultSearchResultItemContent for default implementations, or create a custom implementation using Kotlin delegation to override only specific components:

object MySearchResultItemContent : SearchResultItemContent by DefaultSearchResultItemContent {
@Composable
override fun Title(state: SearchResultItemState) {
// Custom icons and colors
SearchResultItemTitleComposable(
state = state,
icons = myCustomIcons,
colors = myCustomColors
)
}
}

Inheritors

Functions

Link copied to clipboard

Composable function that renders the short item's address.

Link copied to clipboard

Composable function that displays important alerts or status messages.

Link copied to clipboard

Composable function that displays key attributes or features as tags.

Link copied to clipboard

Composable function that renders EV charging station status information.

Link copied to clipboard

Composable function that shows the distance from the user's location.

Link copied to clipboard

Composable function that displays the item's rating and review count.

Link copied to clipboard

Composable function that renders the subtitle or secondary description.

Link copied to clipboard

Composable function that renders the main title/name of the search result item.