Geoffrey

Results 6 comments of Geoffrey

Ah my bad by looking inside the code I just found `SelectorConfig.leadingPadding` that seams to fix the problem here. But the doc is missing some properties ^^

Here a example using this code with the `flutter_libphonenumber` package ```dart FutureBuilder( future: parse('+33611223344'), builder: (context, snapshot) { if (snapshot.hasError) { return Center( child: Text(snapshot.error.toString()), ); } if (!snapshot.hasData) {...

Hello, Sorry I didn't see the notification for your response. I'd would say that deprecating the `formatNsn` is better for consistency, it would help the new user to only have...