You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@aminsamad I'm sorry, I don't have much free time right now. If you'd like to contribute, please open a pull request. The code of the package is not that complex, so if you have some experience in Flutter, you should be able to add the right to left text support.
@aminsamad
You can use directionality and add textdirection LTR and since numbers always LTR directed may it work with you since it worked well for me and below is code.
Directionality(
textDirection: TextDirection.ltr,
child: SlidingNumber(
number: 230,
style: Theme.of(context).textTheme.headlineLarge!.copyWith(
color: kGradientButtonTextColor,
fontWeight: FontWeight.w700),
duration: const Duration(milliseconds: 1000),
curve: Curves.linear,
),
),
Hello, I used for clock numbers but just worked for ltr not worked for rtl for example 48 seconds in rtl 84 seconds
The text was updated successfully, but these errors were encountered: