Update: 2026-05-15 04:35:25
This commit is contained in:
@@ -131,6 +131,30 @@ class ScannerView extends GetView<ScannerController> {
|
||||
tooltip: 'استيراد PDF',
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.black45,
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
child: IconButton(
|
||||
onPressed: () => controller.pickFromGallery(),
|
||||
icon: const Icon(Icons.photo_library, color: Colors.white),
|
||||
tooltip: 'من المعرض',
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.black45,
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
child: IconButton(
|
||||
onPressed: () => controller.pickExcelFile(),
|
||||
icon: const Icon(Icons.table_chart, color: Colors.white),
|
||||
tooltip: 'استيراد Excel',
|
||||
),
|
||||
),
|
||||
const Spacer(),
|
||||
TextButton.icon(
|
||||
onPressed: () => Get.back(),
|
||||
|
||||
Reference in New Issue
Block a user