From 3e71938409ea2d6538c56f545be371314f8b633e Mon Sep 17 00:00:00 2001 From: Mirza Moin <38783381+MirzaBirds@users.noreply.github.com> Date: Mon, 17 Jul 2023 23:25:21 +0530 Subject: [PATCH] Update flicker.dart - Text alignment issue fixed Text alignment was not working if we passed alignment in the FlickerAnimatedText widget. --- lib/src/flicker.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/flicker.dart b/lib/src/flicker.dart index 6e20af8..b686d4c 100644 --- a/lib/src/flicker.dart +++ b/lib/src/flicker.dart @@ -19,6 +19,7 @@ class FlickerAnimatedText extends AnimatedText { text: text, textStyle: textStyle, duration: speed, + textAlign: textAlign ); late Animation _entry;