Update: 2026-06-26 01:43:37

This commit is contained in:
Hamza-Ayed
2026-06-26 01:43:37 +03:00
parent 3002dbd517
commit bd3ba7ecd7
22 changed files with 227 additions and 183 deletions

View File

@@ -53,9 +53,9 @@ class LoginPage extends StatelessWidget {
),
),
const SizedBox(height: 24),
const Center(
Center(
child: Text(
'سيرو سيرفس',
'Siro Service'.tr,
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
@@ -64,9 +64,9 @@ class LoginPage extends StatelessWidget {
),
),
),
const Center(
Center(
child: Text(
'نظام خدمة العملاء المتكامل',
'Integrated customer service system'.tr,
style: TextStyle(
fontSize: 16,
color: Colors.grey,
@@ -76,8 +76,8 @@ class LoginPage extends StatelessWidget {
const SizedBox(height: 60),
// Fields with modern styling
const Text(
'تسجيل الدخول',
Text(
'Login'.tr,
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w600,
@@ -124,9 +124,9 @@ class LoginPage extends StatelessWidget {
child: InkWell(
borderRadius: BorderRadius.circular(16),
onTap: () => controller.login(),
child: const Center(
child: Center(
child: Text(
'دخول',
'Login'.tr,
style: TextStyle(
color: Colors.white,
fontSize: 18,
@@ -144,14 +144,14 @@ class LoginPage extends StatelessWidget {
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'ليس لديك حساب موظف؟ ',
Text(
'Don\'t have an employee account?'.tr,
style: TextStyle(color: Colors.grey),
),
TextButton(
onPressed: () => Get.to(() => const RegisterPage()),
child: const Text(
'إنشاء حساب جديد',
child: Text(
'Create new account'.tr,
style: TextStyle(
color: AppColor.blueColor,
fontWeight: FontWeight.bold,