From f49d9e3fe452a49519ecde7d9a5b2dab15f5b72c Mon Sep 17 00:00:00 2001 From: alkaitagi Date: Wed, 8 Dec 2021 22:08:26 +0300 Subject: [PATCH] Improve results end hint --- lib/dictionary/search_results_sliver.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dictionary/search_results_sliver.dart b/lib/dictionary/search_results_sliver.dart index a7f0c022..7be2e14b 100644 --- a/lib/dictionary/search_results_sliver.dart +++ b/lib/dictionary/search_results_sliver.dart @@ -98,8 +98,8 @@ class SearchResultsSliver extends StatelessWidget { } Widget _buildEndCaption(BuildContext context) { - return const Caption( - 'End of results', + return Caption( + search.monolingual ? 'End of results' : 'Shown first 50 results', icon: Icons.check_rounded, ); }