File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ import 'dart:developer' ;
2+
13import 'package:flutter/material.dart' ;
24import 'package:intl_phone_field_extended/intl_phone_field.dart' ;
35
@@ -9,6 +11,7 @@ class MyApp extends StatefulWidget {
911 const MyApp ({Key ? key}) : super (key: key);
1012
1113 @override
14+ // ignore: library_private_types_in_public_api
1215 _MyAppState createState () => _MyAppState ();
1316}
1417
@@ -65,10 +68,10 @@ class _MyAppState extends State<MyApp> {
6568 ),
6669 languageCode: "en" ,
6770 onChanged: (phone) {
68- print (phone.completeNumber);
71+ log (phone.completeNumber);
6972 },
7073 onCountryChanged: (country) {
71- print ('Country changed to: ${country .name }' );
74+ log ('Country changed to: ${country .name }' );
7275 },
7376 ),
7477 const SizedBox (
You can’t perform that action at this time.
0 commit comments