diff --git a/devtools_options.yaml b/devtools_options.yaml new file mode 100644 index 0000000..7e7e7f6 --- /dev/null +++ b/devtools_options.yaml @@ -0,0 +1 @@ +extensions: diff --git a/lib/auth/signin.dart b/lib/auth/signin.dart index 78812bc..a8a8743 100644 --- a/lib/auth/signin.dart +++ b/lib/auth/signin.dart @@ -253,7 +253,7 @@ class _SignInState extends State { TextButton( onPressed: () => {}, child: Text( - 'Ver.2.3.2 \u00A9 Made by Vustron Vustronus 2023', + 'Ver.2.3.3 \u00A9 Made by Vustron Vustronus 2023', style: GoogleFonts.zenDots( fontSize: 7.0, fontWeight: FontWeight.bold, diff --git a/lib/auth/signup.dart b/lib/auth/signup.dart index a7bad59..8fd90a9 100644 --- a/lib/auth/signup.dart +++ b/lib/auth/signup.dart @@ -217,7 +217,7 @@ class _SignUpState extends State { TextButton( onPressed: () => {}, child: Text( - 'Ver.2.3.2 \u00A9 Made by Vustron Vustronus 2023', + 'Ver.2.3.3 \u00A9 Made by Vustron Vustronus 2023', style: GoogleFonts.zenDots( fontSize: 7.0, fontWeight: FontWeight.bold, diff --git a/lib/views/changeLocationView.dart b/lib/views/changeLocationView.dart index db0f1fa..f303301 100644 --- a/lib/views/changeLocationView.dart +++ b/lib/views/changeLocationView.dart @@ -42,6 +42,12 @@ class _ChangeLocationState extends State { WorldTimeData(url: 'Europe/Rome', location: 'Rome', flag: 'italy.png'), ]; + @override + void initState() { + super.initState(); + locations.sort((a, b) => a.location.compareTo(b.location)); + } + @override Widget build(BuildContext context) { print('Build function run'); diff --git a/pubspec.yaml b/pubspec.yaml index 390e2df..3910c15 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 2.3.2+1 +version: 2.3.3+1 environment: sdk: ">=3.1.5 <4.0.0"