feat(auth): implement phone registration flow with preset avatars

This commit is contained in:
klockky
2026-06-03 08:20:21 +00:00
parent 570a4396eb
commit 7c2ad380bb
8 changed files with 486 additions and 2 deletions
+4 -1
View File
@@ -168,5 +168,8 @@
"editProfileSave": "Save",
"editProfileFirstName": "First name",
"editProfileLastName": "Last name",
"editProfileRemovePhoto": "Remove photo"
"editProfileRemovePhoto": "Remove photo",
"registrationTitle": "Create your profile",
"registrationSubtitle": "Add your name and pick an avatar",
"registrationChooseAvatar": "Choose an avatar"
}
+18
View File
@@ -1009,6 +1009,24 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Remove photo'**
String get editProfileRemovePhoto;
/// No description provided for @registrationTitle.
///
/// In en, this message translates to:
/// **'Create your profile'**
String get registrationTitle;
/// No description provided for @registrationSubtitle.
///
/// In en, this message translates to:
/// **'Add your name and pick an avatar'**
String get registrationSubtitle;
/// No description provided for @registrationChooseAvatar.
///
/// In en, this message translates to:
/// **'Choose an avatar'**
String get registrationChooseAvatar;
}
class _AppLocalizationsDelegate
+9
View File
@@ -478,4 +478,13 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get editProfileRemovePhoto => 'Remove photo';
@override
String get registrationTitle => 'Create your profile';
@override
String get registrationSubtitle => 'Add your name and pick an avatar';
@override
String get registrationChooseAvatar => 'Choose an avatar';
}
+9
View File
@@ -480,4 +480,13 @@ class AppLocalizationsRu extends AppLocalizations {
@override
String get editProfileRemovePhoto => 'Удалить фото';
@override
String get registrationTitle => 'Создание профиля';
@override
String get registrationSubtitle => 'Укажите имя и выберите аватар';
@override
String get registrationChooseAvatar => 'Выберите аватар';
}
+4 -1
View File
@@ -168,5 +168,8 @@
"editProfileSave": "Сохранить",
"editProfileFirstName": "Имя",
"editProfileLastName": "Фамилия",
"editProfileRemovePhoto": "Удалить фото"
"editProfileRemovePhoto": "Удалить фото",
"registrationTitle": "Создание профиля",
"registrationSubtitle": "Укажите имя и выберите аватар",
"registrationChooseAvatar": "Выберите аватар"
}