Right to left
6/20/25Less than 1 minute
Right to left
Info
Right to left support is currently in beta mode.
Enabling right to left rendering in the AnnotatedText component allows for proper display of languages that are read from right to left, such as Arabic or Hebrew. This is particularly useful for applications that need to support multilingual text.
Rtl can be configured in the AnnotatedText component by setting the text.rtl
property to true
. This will ensure that the text is rendered correctly in a right-to-left format.
const textAnnotation = AnnotatedText_.init({
text: {
rtl: true, // Enable right to left rendering
},
});