Skip to content

Commit

Permalink
Search improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Yustas committed Feb 5, 2025
1 parent 29ea6d5 commit f273cbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/utils/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Widget SearchHint(BuildContext context, callback) {
const SizedBox(height: 20,),
Text(
searchTry,
style: Theme.of(context).textTheme.headlineLarge!.copyWith(
style: Theme.of(context).textTheme.headlineMedium!.copyWith(
color: Theme.of(context).hintColor,
),
),
Expand Down
5 changes: 4 additions & 1 deletion lib/widgets/search_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ class SearchList extends StatelessWidget {

),
const SizedBox(height: 10,),
Text(results[index].name),
Text(
results[index].name,
style: Theme.of(context).textTheme.titleLarge
),
],
),
),
Expand Down

0 comments on commit f273cbc

Please sign in to comment.