131 lines
4.7 KiB
Dart
131 lines
4.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import '../controllers/add_tenant_controller.dart';
|
|
|
|
class AddTenantView extends StatelessWidget {
|
|
const AddTenantView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final controller = Get.put(AddTenantController());
|
|
final isDark = Theme.of(context).brightness == Brightness.dark;
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('إضافة مكتب محاسبي', style: TextStyle(fontFamily: 'El Messiri')),
|
|
centerTitle: true,
|
|
backgroundColor: const Color(0xFF0F4C81),
|
|
foregroundColor: Colors.white,
|
|
),
|
|
body: SingleChildScrollView(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Text(
|
|
'بيانات المكتب الأساسية',
|
|
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
|
|
),
|
|
const SizedBox(height: 24),
|
|
_buildTextField(
|
|
controller: controller.nameController,
|
|
label: 'اسم المكتب',
|
|
icon: Icons.account_balance,
|
|
isDark: isDark,
|
|
),
|
|
const SizedBox(height: 16),
|
|
_buildTextField(
|
|
controller: controller.emailController,
|
|
label: 'البريد الإلكتروني للعمل',
|
|
icon: Icons.email,
|
|
keyboardType: TextInputType.emailAddress,
|
|
isDark: isDark,
|
|
),
|
|
const SizedBox(height: 24),
|
|
const Text(
|
|
'بيانات مدير المكتب المسؤول',
|
|
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
|
|
),
|
|
const SizedBox(height: 16),
|
|
_buildTextField(
|
|
controller: controller.managerNameController,
|
|
label: 'اسم المدير الكامل',
|
|
icon: Icons.person,
|
|
isDark: isDark,
|
|
),
|
|
const SizedBox(height: 16),
|
|
_buildTextField(
|
|
controller: controller.phoneController,
|
|
label: 'رقم هاتف المدير (لتسجيل الدخول OTP)',
|
|
icon: Icons.phone,
|
|
keyboardType: TextInputType.phone,
|
|
isDark: isDark,
|
|
),
|
|
const SizedBox(height: 16),
|
|
_buildTextField(
|
|
controller: controller.managerPasswordController,
|
|
label: 'كلمة مرور المدير',
|
|
icon: Icons.lock,
|
|
isPassword: true,
|
|
isDark: isDark,
|
|
),
|
|
const SizedBox(height: 40),
|
|
SizedBox(
|
|
width: double.infinity,
|
|
height: 54,
|
|
child: Obx(
|
|
() => ElevatedButton(
|
|
onPressed: controller.isSubmitting.value ? null : controller.submit,
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFF0F4C81),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(14)),
|
|
),
|
|
child: controller.isSubmitting.value
|
|
? const CircularProgressIndicator(color: Colors.white)
|
|
: const Text(
|
|
'حفظ وإضافة',
|
|
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold, color: Colors.white),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildTextField({
|
|
required TextEditingController controller,
|
|
required String label,
|
|
required IconData icon,
|
|
TextInputType? keyboardType,
|
|
bool isPassword = false,
|
|
required bool isDark,
|
|
}) {
|
|
return TextField(
|
|
controller: controller,
|
|
keyboardType: keyboardType,
|
|
obscureText: isPassword,
|
|
decoration: InputDecoration(
|
|
labelText: label,
|
|
prefixIcon: Icon(icon, color: const Color(0xFF0F4C81)),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: BorderSide(color: isDark ? Colors.white24 : Colors.grey.shade300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: BorderSide(color: isDark ? Colors.white24 : Colors.grey.shade300),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(color: Color(0xFF0F4C81), width: 2),
|
|
),
|
|
filled: true,
|
|
fillColor: isDark ? Colors.white.withValues(alpha: 0.05) : Colors.white,
|
|
),
|
|
);
|
|
}
|
|
}
|