-
I read the docs but didn't see the color input support; I wanted to ask if it's possible to use it or is there a plan to add support for it? 🤔 |
Beta Was this translation helpful? Give feedback.
Answered by
wang0618
Feb 24, 2022
Replies: 2 comments 1 reply
-
It's easy to support color input, I will add this feature in a few hours. I will comment in this thread when I finish. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
pikhosh
-
The color input support is added to dev version. Install dev version:
Here is an example to use color input: c = input_group('Color input', [
input('Default', type='color', name='color1'),
input('Standard candidates', type='color', name='color2', datalist=True),
input('Customize candidates', type='color', name='color3', datalist=['#000000', '#111111', '#222222']),
])
put_text(c) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's easy to support color input, I will add this feature in a few hours. I will comment in this thread when I finish.