KushagraVasal

Results 6 comments of KushagraVasal

Why not replace PhoneInput with intl_phone_number_input Of course, directly using intl_phone_number_input will not work but we can copy internal logic from github and replace the Flutter widget with the Shadcn...

and add [x-rates.com](url) in currencies to add the feature of displaying exchange rates add the feature of displaying exchange rates in currency_picker

PhoneInput don't have parsing, formatting, and validating For more information, you can check out **E.164** standard And [https://github.com/google/libphonenumber](url) Example: [https://libphonenumber.appspot.com/phonenumberparser?number=%2B919876543210](url), [https://libphonenumber.appspot.com](url) In some packages, I have seen that typing the...

may be adding [https://github.com/superakabo/dlibphonenumber](url) in doc with sample code can be enough

To make the code lighter you can look into this `String getFlagEmoji(String countryCode) { List codePoints = countryCode.toUpperCase().split('').map((char) { return 127397 + char.codeUnitAt(0); }).toList(); return String.fromCharCodes(codePoints); }` `Text(getFlagEmoji('IN')),` But the...

And BottomSheet is preferred in place of dropdown on small screen devices