feat : search and filter in buyer out of the province

This commit is contained in:
MrM
2025-06-24 16:59:23 +03:30
parent d4f1e86295
commit 701e8e0fbe
16 changed files with 2217 additions and 100 deletions

View File

@@ -28,7 +28,7 @@ class ApiHandler {
}
typedef AppAsyncCallback<T> = Future<T> Function();
typedef ErrorCallback = void Function(dynamic error, StackTrace? stackTrace);
typedef ErrorCallback = Function(dynamic error, StackTrace? stackTrace);
typedef VoidCallback = void Function();
/// this is global safe call function

View File

@@ -1,7 +1,7 @@
import 'package:intl/intl.dart';
extension XString on String {
get separatedByComma {
String get separatedByComma {
final formatter = NumberFormat('#,###');
return formatter.format(this);
}