❌ name.lowercased().contains(searchText.lowercased())
✅ name.localizedStandardContains(searchText)
The latter ignores case, but also ignores diacritics (cafe vs café), handles localized variants (ẞ → ss, etc), and is supported in SwiftData.
❌ name.lowercased().contains(searchText.lowercased())
✅ name.localizedStandardContains(searchText)
The latter ignores case, but also ignores diacritics (cafe vs café), handles localized variants (ẞ → ss, etc), and is supported in SwiftData.
(6)
(6)
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3472398119&searchtext=
TF2Maps: https://tf2maps.net/downloads/emergent.18791/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3472398119&searchtext=
TF2Maps: https://tf2maps.net/downloads/emergent.18791/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3358494285&searchtext=
TF2Maps: https://tf2maps.net/downloads/fortezza.15190/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3358494285&searchtext=
TF2Maps: https://tf2maps.net/downloads/fortezza.15190/
Send a seasonal message to your MP to keep #WASPI top of their inbox. You can find their email address here: https://members.parliament.uk/findyourmp?SearchText=mp #JusticeForWASPIWomen
Send a seasonal message to your MP to keep #WASPI top of their inbox. You can find their email address here: https://members.parliament.uk/findyourmp?SearchText=mp #JusticeForWASPIWomen
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3716788243&searchtext=
TF2Maps: https://tf2maps.net/downloads/werner.19527/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3716788243&searchtext=
TF2Maps: https://tf2maps.net/downloads/werner.19527/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3294327604&searchtext=
TF2Maps: https://tf2maps.net/downloads/koth_cliffmas.17601/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3294327604&searchtext=
TF2Maps: https://tf2maps.net/downloads/koth_cliffmas.17601/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3554813926&searchtext=
TF2Maps: https://tf2maps.net/downloads/hideout.5970/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3554813926&searchtext=
TF2Maps: https://tf2maps.net/downloads/hideout.5970/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3472414128&searchtext=
TF2Maps: https://tf2maps.net/downloads/mariposa.19126/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3472414128&searchtext=
TF2Maps: https://tf2maps.net/downloads/mariposa.19126/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3563662184&searchtext=
TF2Maps: https://tf2maps.net/downloads/scaredycat.19573/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3563662184&searchtext=
TF2Maps: https://tf2maps.net/downloads/scaredycat.19573/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3595239561&searchtext=
TF2Maps: https://tf2maps.net/downloads/pl_burner.7361/
Steam:https://steamcommunity.com/sharedfiles/filedetails/?id=3595239561&searchtext=
TF2Maps: https://tf2maps.net/downloads/pl_burner.7361/
(steamcommunity.com/sharedfiles/filedetails/?id=3342097641&searchtext=spout)
🎮 Game: Sky Children of the Light
(store.steampowered.com/app/2325290/Sky_Children_of_the_Light/)
♫ Lofi Study by FASSounds
(pixabay.com/music/lofi-study-112191/)
(steamcommunity.com/sharedfiles/filedetails/?id=3342097641&searchtext=spout)
🎮 Game: Sky Children of the Light
(store.steampowered.com/app/2325290/Sky_Children_of_the_Light/)
♫ Lofi Study by FASSounds
(pixabay.com/music/lofi-study-112191/)
`searchText` is the main state variable and is updated synchronously. so updates to it are urgent and have a guarantee of committing synchronously.
whereas `deferredSearchText` lags behind, serving as source of truth for animation.
one line of code
`searchText` is the main state variable and is updated synchronously. so updates to it are urgent and have a guarantee of committing synchronously.
whereas `deferredSearchText` lags behind, serving as source of truth for animation.
one line of code