Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit 4caf2a8

Browse files
authored
Merge pull request #62 from LionZXY/develop
Add custom data to PickerItem
2 parents 8cd42bc + cb1be4c commit 4caf2a8

File tree

1 file changed

+2
-1
lines changed
  • bubblepicker/src/main/java/com/igalata/bubblepicker/model

1 file changed

+2
-1
lines changed

bubblepicker/src/main/java/com/igalata/bubblepicker/model/PickerItem.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ data class PickerItem @JvmOverloads constructor(var title: String? = null,
1717
@ColorInt var textColor: Int? = null,
1818
var textSize: Float = 40f,
1919
var backgroundImage: Drawable? = null,
20-
var isSelected: Boolean = false)
20+
var isSelected: Boolean = false,
21+
var customData: Any? = null)

0 commit comments

Comments
 (0)