I18nManager.forceRtl(false) does not work in android

Viewed 806

I want to disable forced-rtl in android device having (rtl-device-language) by calling:

await I18nManager.forceRTL(false);
RNRestart.Restart();

but the same code works when switching device-lang to (LTR-lang)

How can I disable RTL in an android device having (RTL-device-lang) ...

any suggestion ... any help ... anything ... is welcome

1 Answers

use this in index.js file :

I18nManager.allowRTL(false);
I18nManager.forceRTL(false);
Related