Update README.md

This commit is contained in:
Salvatore Giordano
2020-04-05 12:31:17 +02:00
parent 8f9959cbe6
commit 7ade439518
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ class CountryCodePickerState extends State<CountryCodePicker> {
Widget build(BuildContext context) {
Widget _widget;
if (widget.builder != null)
_widget = GestureDetector(
_widget = InkWell(
onTap: showCountryCodePickerDialog,
child: widget.builder(selectedItem),
);