Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 0a1bf22

Browse files
committed
fix: Login fixes
Fixes - Password requring atleast 6 characters - Fullname requring atleast 10 characters
1 parent c6d587e commit 0a1bf22

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ android {
5454
applicationId = "com.dita.academia"
5555
minSdk = 28
5656
targetSdk = 35
57-
versionCode = 27
58-
versionName = "2025.6.1+0"
57+
versionCode = 28
58+
versionName = "2025.6.3+0"
5959
}
6060
//
6161
signingConfigs {

lib/features/auth/views/register_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ class _RegisterPageState extends State<RegisterPage> {
268268
enabled: false,
269269
textAlign: TextAlign.center,
270270
validator: (value) {
271-
if ((value?.length ?? 0) < 10) {
271+
if ((value?.length ?? 0) < 3) {
272272
return "Please provide your full name";
273273
}
274274
return null;

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: 2025.6.1+0
19+
version: 2025.6.3+0
2020

2121
environment:
2222
sdk: ^3.6.0-216.1.beta

0 commit comments

Comments
 (0)