ionicfirebaseapp / getwidget

Most popular and easy to use open source UI library with 1000+ Widgets to build flutter app.
https://www.getwidget.dev
MIT License
4.52k stars 602 forks source link

GfFormDropDown Never Displays Hint Text #351

Open Guy-Michael opened 9 months ago

Guy-Michael commented 9 months ago

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.