Update: 2026-05-11 01:09:54

This commit is contained in:
Hamza-Ayed
2026-05-11 01:09:55 +03:00
parent d6a06cadf9
commit d86a00fe03
8 changed files with 268 additions and 24 deletions

View File

@@ -119,6 +119,18 @@ class ScannerView extends GetView<ScannerController> {
state: state,
children: [
AwesomeFlashButton(state: state),
const SizedBox(width: 16),
Container(
decoration: BoxDecoration(
color: Colors.black45,
borderRadius: BorderRadius.circular(8),
),
child: IconButton(
onPressed: () => controller.pickPdfFile(),
icon: const Icon(Icons.picture_as_pdf, color: Colors.white),
tooltip: 'استيراد PDF',
),
),
const Spacer(),
TextButton.icon(
onPressed: () => Get.back(),