diff --git a/lib/pages/operation/reception/reception_search_page_model.dart b/lib/pages/operation/reception/reception_search_page_model.dart index fe0bd51..c930c03 100644 --- a/lib/pages/operation/reception/reception_search_page_model.dart +++ b/lib/pages/operation/reception/reception_search_page_model.dart @@ -22,7 +22,10 @@ class ReceptionSearchPageModel res.when( (data) async { final founds = data - .where((e) => e.name?.contains(name) == true) + .where( + (e) => + e.name?.toLowerCase().contains(name.toLowerCase()) == true, + ) .toList(); state = AsyncValue.data(founds); }, diff --git a/pubspec.yaml.bak b/pubspec.yaml.bak index 517b67a..04cf6f9 100644 --- a/pubspec.yaml.bak +++ b/pubspec.yaml.bak @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.2.3+8 +version: 0.3.0+9 environment: sdk: ^3.8.1