Skip to content

[FormBuilderColorPickerField]: Color labels are not user friendly #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
3 of 7 tasks
mgalgs opened this issue Apr 10, 2025 · 3 comments
Open
3 of 7 tasks

[FormBuilderColorPickerField]: Color labels are not user friendly #142

mgalgs opened this issue Apr 10, 2025 · 3 comments
Labels
bug Something isn't working originates from dependency The issue originates from package dependency

Comments

@mgalgs
Copy link

mgalgs commented Apr 10, 2025

Is there an existing issue for this?

  • I have searched the existing issues

Package/Plugin version

12.0.0

Platforms

  • Android
  • iOS
  • Linux
  • MacOS
  • Web
  • Windows

Flutter doctor

Flutter doctor
> fvm flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.29.2, on Arch Linux 6.12.20-1-lts, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 35.0.0)
[✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome)
    ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
[✓] Linux toolchain - develop for Linux desktop
[✓] Android Studio (version 2024.3)
[✓] Connected device (2 available)
[✓] Network resources

! Doctor found issues in 1 category.

Minimal code example

Code sample
          FormBuilderColorPickerField(
            name: 'text_color',
            initialValue: textColor,
            colorPickerType: ColorPickerType.materialPicker,
            decoration: const InputDecoration(labelText: 'Text color'),
            onChanged: (value) {
              if (value != null && value != textColor) {
                textColor = value;
                onChange();
              }
            },
          ),

Current Behavior

The label on each color in the material picker is pretty wild.

Android:

Image

iOS:

Image

Expected Behavior

A cleaner representation of the color (possibly just the hex value in a smaller text size).

Steps To Reproduce

Open a color picker

Aditional information

No response

@mgalgs mgalgs added the bug Something isn't working label Apr 10, 2025
@mgalgs
Copy link
Author

mgalgs commented Apr 17, 2025

Is this actually the same as #137 though? Note that this is the material picker pop-up, whereas #137 refers to the label after a color is selected.

@deandreamatias
Copy link
Contributor

Is related with this: mchome/flutter_colorpicker#120

@deandreamatias deandreamatias added the originates from dependency The issue originates from package dependency label Apr 18, 2025
@deandreamatias
Copy link
Contributor

This issue is from dependency package flutter_colorpicker. Until don't resolve there, we can't update here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working originates from dependency The issue originates from package dependency
Projects
Status: Ready
Development

No branches or pull requests

2 participants