Skip to content

ColorDialog

ColorDialog is a widget that provides a color dialog that you can use in your application.

Example

example_colorDialog.tsx
import { ColorDialog } from '@vixen-js/core-react';
import { QColor } from '@vixen-js/core';
export function ColorChooser(){
return (
<ColorDialog currentColor={new QColor("black")} />
);
}

Learn more about ColorDialog