FindBarStrings

data class FindBarStrings(val placeholder: String, val clearSearch: String, val noMatches: String, val previousMatch: String, val nextMatch: String, val close: String, val matchCount: (current: Int, total: Int) -> String, val replacePlaceholder: String, val replace: String, val replaceAll: String, val showReplace: String, val hideReplace: String)(source)

Localizable strings for the FindBar component. Provide a custom implementation to localize the Find UI.

Constructors

Link copied to clipboard
constructor(placeholder: String, clearSearch: String, noMatches: String, previousMatch: String, nextMatch: String, close: String, matchCount: (current: Int, total: Int) -> String, replacePlaceholder: String, replace: String, replaceAll: String, showReplace: String, hideReplace: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Accessibility label and tooltip for the clear-search button.

Link copied to clipboard

Accessibility label and tooltip for the close-find-bar button.

Link copied to clipboard

Label for the control that hides the replace UI.

Link copied to clipboard
val matchCount: (current: Int, total: Int) -> String

Format string for match count display. Will be called with (currentIndex, totalCount) parameters. Example: "3 of 15"

Link copied to clipboard

Accessibility label and tooltip for the next-match button.

Link copied to clipboard

Message shown when the search yields no matches.

Link copied to clipboard

Placeholder text shown in the search input field.

Link copied to clipboard

Accessibility label and tooltip for the previous-match button.

Link copied to clipboard

Label for the button that replaces the current match.

Link copied to clipboard

Label for the button that replaces all matches.

Link copied to clipboard

Placeholder text shown in the replacement input field.

Link copied to clipboard

Label for the control that reveals the replace UI.