bdlukaa / fluent_ui

Implements Microsoft's WinUI3 in Flutter.
https://bdlukaa.github.io/fluent_ui/
BSD 3-Clause "New" or "Revised" License
2.82k stars 442 forks source link

Is there a color picker for the fluent ui theme? #963

Open zhangweidi opened 8 months ago

zhangweidi commented 8 months ago

I only found color pickers that depended on material, I hope it doesn't depend on material at all. Is there a color picker that can meet this requirement?

Thank you!

bdlukaa commented 8 months ago

Hello! Windows UI has guidelines for a Color Picker control, but it is substantially complex to make an implementation for it. Since it is not a core component, I decided to not implement it, but PRs are more than welcome - so feel free to make a pull request.

The existent flutter color picker packages out there just use material as a base, since it doesn't provide specific guidelines for a color picker. Also note that we like to keep fluent_ui dependencies minimum and only add any only when necessary, which means the picker implementation would need to be done from scratch.

Additional resources