Skip to content

Commit 672e2f7

Browse files
committed
Fixed the bugs
1 parent 08adc86 commit 672e2f7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/auth/signin.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class _SignInState extends State<SignIn> {
223223
TextButton(
224224
onPressed: () => {},
225225
child: Text(
226-
'Ver.2.0 \u00A9 Made by Vustron Vustronus 2023',
226+
'Ver.2.2 \u00A9 Made by Vustron Vustronus 2023',
227227
style: GoogleFonts.zenDots(
228228
fontSize: 7.0,
229229
fontWeight: FontWeight.bold,

lib/auth/signup.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class _SignUpState extends State<SignUp> {
172172
TextButton(
173173
onPressed: () => {},
174174
child: Text(
175-
'Ver.2.0 \u00A9 Made by Vustron Vustronus 2023',
175+
'Ver.2.2 \u00A9 Made by Vustron Vustronus 2023',
176176
style: GoogleFonts.zenDots(
177177
fontSize: 7.0,
178178
fontWeight: FontWeight.bold,

lib/components/worldtimeContent.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class _WorldTimeContentState extends State<WorldTimeContent> {
214214
TextButton(
215215
onPressed: () => {},
216216
child: Text(
217-
'Ver.2.0 \u00A9 Made by Vustron Vustronus 2023',
217+
'Ver.2.2 \u00A9 Made by Vustron Vustronus 2023',
218218
style: GoogleFonts.zenDots(
219219
fontSize: 7.0,
220220
fontWeight: FontWeight.bold,
@@ -268,7 +268,7 @@ class _WorldTimeContentState extends State<WorldTimeContent> {
268268
Text(
269269
name,
270270
style: GoogleFonts.zenDots(
271-
color: Colors.white,
271+
color: widget.textColor,
272272
fontSize: 12.0,
273273
fontWeight: FontWeight.bold,
274274
),

lib/utils/loader.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Loading extends StatefulWidget {
1414
class _LoadingState extends State<Loading> {
1515
Future<void> setupWorldTimeData() async {
1616
WorldTimeData instance = WorldTimeData(
17-
location: 'Seoul', flag: 'philippines.jpg', url: 'Asia/Seoul');
17+
location: 'Manila', flag: 'philippines.jpg', url: 'Asia/Manila');
1818
await instance.getTime();
1919
Navigator.pushReplacementNamed(context, '/', arguments: {
2020
'location': instance.location,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 2.1.0+1
19+
version: 2.2.0+1
2020

2121
environment:
2222
sdk: ">=3.1.5 <4.0.0"

0 commit comments

Comments
 (0)