getwidget icon indicating copy to clipboard operation
getwidget copied to clipboard

GfFormDropDown Never Displays Hint Text

Open Guy-Michael opened this issue 2 years ago • 0 comments

Here is a minimal example:

GfForm(
        onFormSubmitted: (values) {},
        formfields: [
          GfFormDropDown(
              values: ["option 1", "option 2"],
              hintText: "please select an option")
        ],
        defaultSubmitButtonEnabled: true);

This renders a form with a dropdown that displays the first option from the values rather then the hint text.

Guy-Michael avatar Nov 29 '23 13:11 Guy-Michael