Skip to content

the-best-is-best/composeSearchableDropDown

Repository files navigation

Compose Searchable Dropdown


License API Profile Maven Central

Compose Searchable Dropdown is a Jetpack Compose library for Android that provides a dropdown with a search bar.

Download

Maven Central

Compose Searchable Dropdown is available on mavenCentral().

implementation("io.github.the-best-is-best:ComposeSearchableDropdown:1.0.1")

how to use v 2

data class ExampleData(
    val id: Int,
    val name: String
)

private val data = listOf(
    ExampleData(1, "First"),
    ExampleData(2, "Second"),
    ExampleData(3, "Third"),
    ExampleData(4, "Fourth"),
    ExampleData(5, "Fifth"),
)

val selectedItemsState = rememberDropdownStates<ExampleData>(value = data[2])

Column{

    SearchableDropDown(
        listOfItems = data,
        state = selectedItemsState,
        placeholder = {
            Text(text = "اختار")
        },
        searchPlaceHolder = {
            Text(text = "بحث")
        },
        onDropDownItemSelected = {
            Log.d("get v", it.name)
        },
        dropdownItem = {
            Text("${it.id} - ${it.name}", fontSize = 20.sp)
        },
        selectedOptionTextDisplay = {it.name},
        searchIn = {
            it.name
        }
    )

}
  • Can clear state
    selectedItemsState.clear()

How to use v < 2

data class ExampleData(
    val id: Int,
    val name: String
)

private val data = listOf(
    ExampleData(1, "First"),
    ExampleData(2, "Second"),
    ExampleData(3, "Third"),
    ExampleData(4, "Fourth"),
    ExampleData(5, "Fifth"),
)



SearchableDropDown(
    listOfItems = data,
    placeholder = {
        Text(text = "Select an item")
    },
    searchPlaceHolder = {
        Text(text = "Search an item")
    },

    defaultItem = data[2],
    onDropDownItemSelected = {
        Log.d("get v", it.name)
    },
    dropdownItem = {
        Text("${it.id} - ${it.name}")
    },
    selectedOptionTextDisplay = {it.name},
    searchIn = {it.name} // or it.id
)



listOfItems add your list data

placeholder add your placeholder for text field

searchPlaceHolder add your placeholder for search field

defaultItem add your default item

onDropDownItemSelected add your callback when item selected and receive item selected

dropdownItem add your item view like it.name or any thing will display in search dropdown

selectedOptionTextDisplay add your item view like it.name or any thing will display in text field

searchIn add your item like it.name or any thing will search in it

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages