mirror of
https://github.com/flutter/samples.git
synced 2026-03-31 00:33:02 +00:00
Implement case insensitive search in the samples index (#1518)
Closes #1517
This commit is contained in:
@@ -11,7 +11,7 @@ samples:
|
||||
- url: images/gallery4.png
|
||||
alt: Crane app screenshot
|
||||
- url: images/gallery5.png
|
||||
alt: Shrine app screnshot
|
||||
alt: Shrine app screenshot
|
||||
source: https://github.com/flutter/gallery
|
||||
web: https://gallery.flutter.dev
|
||||
description: >
|
||||
@@ -416,7 +416,7 @@ samples:
|
||||
- url: images/web_dashboard1.png
|
||||
alt: Web Dashboard screenshot
|
||||
- url: images/web_dashboard2.png
|
||||
alt: Web Dashbaord screenshot
|
||||
alt: Web Dashboard screenshot
|
||||
- url: images/web_dashboard3.png
|
||||
alt: Web Dashboard screenshot
|
||||
source: https://github.com/flutter/samples/tree/main/experimental/web_dashboard
|
||||
|
||||
@@ -6,8 +6,11 @@ bool matchesQuery(String query, String sampleAttributes) {
|
||||
if (query.isEmpty) {
|
||||
return true;
|
||||
}
|
||||
var queryWords = query.split(' ')..removeWhere((s) => s.isEmpty);
|
||||
var attributes = sampleAttributes.split(' ')..removeWhere((s) => s.isEmpty);
|
||||
|
||||
var queryWords = query.toLowerCase().split(' ')
|
||||
..removeWhere((s) => s.isEmpty);
|
||||
var attributes = sampleAttributes.toLowerCase().split(' ')
|
||||
..removeWhere((s) => s.isEmpty);
|
||||
|
||||
// Test for type filter
|
||||
// This will check whether a type parameter is present in the
|
||||
|
||||
Reference in New Issue
Block a user