flutter_multi_formatter icon indicating copy to clipboard operation
flutter_multi_formatter copied to clipboard

Enhance widget customization

Open IguJl15 opened this issue 1 year ago • 0 comments

Increase customization of the Country Code Dropdown Form Field:

Fixes my own issue/suggestion

  • New short-hand property to show or hide the flag icon on both dropdown value and list (inspired on #156)

  • Added some dropdown field style properties to enhance customization

  • Turn onCountrySelected property nullable, allowing the input to be disabled. Usage:

    CountryDropdown(
      onCountrySelected: null, // Dropdown button disabled
      initialCountryData: PhoneCodes.getPhoneCountryDataByCountryCode(
        'RU',
      ),
    )
    

Disabled

Screencast from 2024-07-17 23-40-54.webm

Show flag

Screencast from 2024-07-17 23-42-49.webm

IguJl15 avatar Jul 18 '24 02:07 IguJl15