Update project

This commit is contained in:
2026-07-23 15:36:11 +05:30
parent 1197cfc161
commit 14fffa40c6
84 changed files with 20918 additions and 2761 deletions

View File

@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:webview_flutter/webview_flutter.dart';
import '../../controllers/authentication/auth_controller.dart';
import '../../service/firebase_analytics/analytics_service.dart';
import '../authentication/verification_view.dart';
class Login_view extends StatelessWidget {
@@ -319,8 +320,13 @@ class Login_view extends StatelessWidget {
elevation: 0,
),
onPressed: canProceed
? () =>
authController.signIn(context, phone)
? () async {
await AnalyticsService.logEvent(
'login_continue_clicked',
);
authController.signIn(context, phone);
}
: null,
child: authController.isLoading.value
? const SizedBox(