Geoffrey
Geoffrey
Same problem too
I still have the same problem ! Did anyone find a way to fix this ?
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 ^^
Any news on this ?
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...