SearchState

data class SearchState(val searchText: String = "", val currentMatchIndex: Int = -1, val allMatches: List<SearchMatch> = emptyList(), val hasMatches: Boolean = false)

Constructors

Link copied to clipboard
constructor(searchText: String = "", currentMatchIndex: Int = -1, allMatches: List<SearchMatch> = emptyList(), hasMatches: Boolean = false)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val hasMatches: Boolean = false
Link copied to clipboard