I have an app that created by awesome React-native and my layout designed to be in RTL mode. I\'ve set up an option for forcing the layout to be RT
React-native
Thats because you should use I18nManager with try and catch! it needs "await" to do his job.
try { I18nManager.allowRTL(false); } catch (e) { console.log(e); }
use it like this, and it will work.