From 7f151b14302508ee30b303afd07e8579b7ec53f9 Mon Sep 17 00:00:00 2001 From: alkaitagi Date: Tue, 9 Nov 2021 13:00:16 +0300 Subject: [PATCH] Fix caption text --- lib/widgets/caption.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/caption.dart b/lib/widgets/caption.dart index e3e7e091..8459a1d2 100644 --- a/lib/widgets/caption.dart +++ b/lib/widgets/caption.dart @@ -24,7 +24,7 @@ class Caption extends StatelessWidget { children: [ if (icon != null) SpanIcon(icon!), Text( - 'End of results', + text, style: Theme.of(context).textTheme.caption?.copyWith( fontSize: 14, ),