Let we have strings in English (LTR) and Hebrew (RTL)
String s = "Well done %s!";
String t = "! %s כל הכבוד";
So when I use smth like
Text(sprintf(s,[userName]));
everything is correct. But when
Text(sprintf(t,[userName]));
I got "כל הכבוד USER_NAME!". It should be "!USER_NAME כל הכבוד"
Maybe it is related to flutter, maybe to library
Let we have strings in English (LTR) and Hebrew (RTL)
So when I use smth like
Text(sprintf(s,[userName]));everything is correct. But when
Text(sprintf(t,[userName]));I got "כל הכבוד USER_NAME!". It should be "!USER_NAME כל הכבוד"
Maybe it is related to flutter, maybe to library