name ui fix and removed parts of the app that are not ready #422

Merged
tech merged 5 commits from SEND043 into main 2026-02-05 10:05:25 +00:00
5 changed files with 6 additions and 6 deletions
Showing only changes of commit e4fb270390 - Show all commits

View File

@@ -421,7 +421,7 @@
"paymentType": "Payment Method Type",
"selectPaymentType": "Please select a payment method type",
"paymentTypeCard": "Credit Card",
"paymentTypeCard": "Russian bank card",
"paymentTypeBankAccount": "Russian Bank Account",
"paymentTypeIban": "IBAN",
"paymentTypeWallet": "Wallet",

View File

@@ -421,7 +421,7 @@
"paymentType": "Тип способа оплаты",
"selectPaymentType": "Пожалуйста, выберите тип способа оплаты",
"paymentTypeCard": "Кредитная карта",
"paymentTypeCard": "Российская банковская карта",
"paymentTypeBankAccount": "Российский банковский счет",
"paymentTypeIban": "IBAN",
"paymentTypeWallet": "Кошелек",

View File

@@ -109,7 +109,7 @@ class _LoginFormState extends State<LoginForm> {
builder: (context, isUsernameValid, child) => ValueListenableBuilder<bool>(
valueListenable: _isPasswordAcceptable,
builder: (context, isPasswordValid, child) => ButtonsRow(
onSignUp: () => navigate(context, Pages.signup),
onSignUp: () => navigateAndReplace(context, Pages.signup),
login: () => _login(
context,
() => navigateAndReplace(context, Pages.dashboard),

View File

@@ -34,7 +34,7 @@ class SignUpFormContent extends StatelessWidget {
Row(
children: [
IconButton(
onPressed: Navigator.of(context).pop,
onPressed: onLogin,
icon: Icon(Icons.arrow_back),
),
],

View File

@@ -105,7 +105,7 @@ class SignUpFormState extends State<SignUpForm> {
),
);
void handleLogin() => navigate(context, Pages.login);
void handleLogin() => navigateAndReplace(context, Pages.login);
@override
void dispose() {