The eyedropper functionality is only available for macOS because:
- It has FFI bindings to
NSColorSampler, - There's no built-in Windows equivalent (as far as I'm aware), and
- The Linux equivalent appears to be buggy.
If macOS isn't detected, it should simply disable the eyedropper button and retain the rest of the functionality, but if you want to explicitly exclude it, add this to your Cargo.toml:
[dependencies]
floem-picker = { version = "0.2", default-features = false, features = ["alpha"] }Inspired by System Color Picker

