From e1e1b90df8670d8bb60955022e2c7300521463d5 Mon Sep 17 00:00:00 2001 From: imtoori Date: Mon, 9 Dec 2019 23:31:43 +0100 Subject: [PATCH] better custom builder --- example/lib/main.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/example/lib/main.dart b/example/lib/main.dart index 19d96a7..12db222 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -44,6 +44,9 @@ class _MyAppState extends State { showCountryOnly: true, showOnlyCountryWhenClosed: true, alignLeft: true, + builder: (countryCode) { + return Text('${countryCode.code}'); + }, ), ), ),