Blend Color Picker
fun BlendColorPicker(modifier: Modifier = Modifier, onColorSelected: (selectedColor: Color) -> Unit)
A composable function that creates a color picker UI to select color by selecting two colors and blend. This component contains two color spectrum(s) to select first and second color to blend and one slider, that consumer can change how blended color bias to first or second color. By selecting first and second color then by adjusting color bias value, consumer can select or generate their desired color.
Return
@Composable: A color picker UI for selecting blended color.
Parameters
modifier
: Modifier: The modifier to apply to this layout.
on Color Selected
: (selectedColor: Color) -> Unit: Callback to invoke when a color is selected.