first commit

This commit is contained in:
Hamza-Ayed
2026-06-09 08:40:31 +03:00
commit d8901e1a87
3161 changed files with 536187 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
// import 'package:camera/camera.dart';
// import 'package:flutter/material.dart';
// import 'package:get/get.dart';
// import 'package:siro_driver/views/widgets/elevated_btn.dart';
// import '../../../../constant/colors.dart';
// import '../../../../constant/style.dart';
// import '../../../../controller/functions/camer_controller.dart';
// import '../../../../controller/functions/ocr_controller.dart';
// import '../../../widgets/my_scafold.dart';
// class CameraLisencePage extends StatelessWidget {
// CameraLisencePage.CameraLicensePage({super.key});
// final CameraClassController cameraClassController =
// Get.put(CameraClassController());
// @override
// Widget build(BuildContext context) {
// return MyScafolld(
// title: 'Scan Driver License'.tr,
// body: [
// Column(children: [
// Text(
// 'Please put your licence in these border'.tr,
// style: AppStyle.title.copyWith(color: AppColor.greenColor),
// ),
// Padding(
// padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 12),
// child: GetBuilder<CameraClassController>(
// builder: (cameraClassController) =>
// cameraClassController.isCameraInitialized
// ? Stack(
// children: [
// Container(
// decoration: AppStyle.boxDecoration,
// child: CameraPreview(
// cameraClassController.cameraController,
// ),
// ),
// Positioned(
// top: Get.height * .1,
// right: 5,
// left: 5,
// child: Container(
// height: Get.width * 3 / 4,
// width: Get.width * .9,
// decoration: BoxDecoration(
// // color: AppColor.blueColor,
// border: Border.all(
// color: AppColor.yellowColor, width: 2),
// ),
// ),
// ),
// ],
// )
// : Container(
// decoration: AppStyle.boxDecoration,
// height: Get.width * 3 / 4,
// width: Get.width,
// child: Center(
// child: Text(
// 'Camera not initialized yet',
// style: AppStyle.title,
// ),
// ),
// ),
// ),
// ),
// const SizedBox(
// height: 20,
// ),
// MyElevatedButton(
// title: 'Take Image'.tr,
// onPressed: () {
// ScanDocumentsByApi().scanDocumentsByApi();
// },
// )
// ]),
// ],
// isleading: true,
// );
// }
// }