You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developer can add the each color picker (`RGB-A Picker`, `Grid Picker` and `HSL-A Picker`) separately in their own UI. Because `KvColorPicker-Android`
76
+
provided.
77
+
#### RGB-A Picker
78
+
```
79
+
RGBAColorPicker(
80
+
modifier = Modifier,
81
+
onColorSelected = { selectedColor ->
82
+
// Action with selected color
83
+
}
84
+
)
85
+
```
86
+
#### GRID Picker
87
+
```
88
+
GridColorPicker(
89
+
modifier = Modifier,
90
+
onColorSelected = { selectedColor ->
91
+
// Action with selected color
92
+
}
93
+
)
94
+
```
95
+
#### HSL-A Picker
96
+
```
97
+
HSLAColorPicker(
98
+
modifier = Modifier,
99
+
onColorSelected = { selectedColor ->
100
+
// Action with selected color
101
+
}
102
+
)
103
+
```
104
+
73
105
# Contribution
74
106
We welcome contributions! Please fork the repository, make your changes, and submit a pull request. Ensure your code adheres to the established guidelines.
0 commit comments