We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
์ด์ ๊ด๋ จ ์ค๋ช ๋๋ ์ด์ ํด๊ฒฐ์ ์ํ ๋ชฉํ์ ๋ฐฉํฅ์ ์์ฑํด ์ฃผ์ธ์.
์์ธ ์ฒดํฌ ๋ฆฌ์คํธ๋ฅผ ์์ฑํด ์ฃผ์ธ์.
๊ณต์ ํ ๋ด์ฉ ํน์ ๋ ํผ๋ฐ์ค๋ฅผ ๋ฃ์ด์ฃผ์ธ์.
The text was updated successfully, but these errors were encountered:
โจ feat: system ์์ ์ถ๊ฐ (#20)
3c0d0e3
โจ feat: BasicDropDown ์ถ๊ฐ (#20)
b7e803c
โจ feat: icon ์ถ๊ฐ (#20)
fffdd55
๋๋กญ๋ค์ด ์ปดํฌ๋ํธ : BasicDropDown
BasicDropDown
BasicDropDown ์ ๋ค์ด๊ฐ ๋๋กญ๋ค์ด ์์ดํ ์ DropDownItem ์ธํฐํ์ด์ค๋ฅผ ์์ํด ์ฃผ์ธ์.
DropDownItem
data class
data class ExampleItem(override val title: String, val id: String = "example") : DropDownItem val dropDownList = arrayOf(ExampleItem("drop1"), ExampleItem("drop12"), ExampleItem("2321423423342")) BasicDropDown( selectedItem = selectedItem, dropDownList = dropDownList, onSelected = { /* ์ ํ ๋ก์ง */ } )
enum class
enum class ExampleItem(override val title: String) : DropDownItem { DROP1("drop1"), DROP2("drop2"), DROP3("drop3") } BasicDropDown( selectedItem = selectedItem, dropDownList = enumValues<ExampleItem>(), onSelected = { /* ์ ํ ๋ก์ง */ } )
Sorry, something went wrong.
easyhz
No branches or pull requests
๐ About
๐ Details
๐ Remarks
The text was updated successfully, but these errors were encountered: