Update: 2026-05-08 01:45:04

This commit is contained in:
Hamza-Ayed
2026-05-08 01:45:04 +03:00
parent ed8203a02e
commit 7680847e8c
2 changed files with 73 additions and 81 deletions

View File

@@ -25,7 +25,7 @@ class AuditLogView extends StatelessWidget {
color: isDark ? const Color(0xFF1E1E2E) : Colors.white,
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Obx(() => Row(
child: Row(
children: [
_filterChip('الكل', 'all', controller, isDark),
_filterChip('الفواتير', 'invoice', controller, isDark),
@@ -33,7 +33,7 @@ class AuditLogView extends StatelessWidget {
_filterChip('الشركات', 'company', controller, isDark),
_filterChip('المدفوعات', 'payment', controller, isDark),
],
)),
),
),
),