We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4505f78 commit c6f9017Copy full SHA for c6f9017
lib/view/pages/appearance/appearance_page.dart
@@ -21,10 +21,12 @@ class AppearancePage extends StatelessWidget {
21
static Widget createTitle(BuildContext context) =>
22
Text(context.l10n.appearancePageTitle);
23
24
- static bool searchMatches(String value, BuildContext context) => value
25
- .isNotEmpty
26
- ? context.l10n.appsPageTitle.toLowerCase().contains(value.toLowerCase())
27
- : false;
+ static bool searchMatches(String value, BuildContext context) =>
+ value.isNotEmpty
+ ? context.l10n.appearancePageTitle
+ .toLowerCase()
28
+ .contains(value.toLowerCase())
29
+ : false;
30
31
@override
32
Widget build(BuildContext context) {
0 commit comments