Answers for "react native android rtl"

1

react-native force rtl on android

//MainApplication.java
import com.facebook.react.modules.i18nmanager.I18nUtil;

//add this code to the onCreate method 
I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance();
sharedI18nUtilInstance.forceRTL(this,true);
sharedI18nUtilInstance.allowRTL(this, true);
Posted by: Guest on August-14-2021
2

react native ios rtl

// add this line at the top before #import "AppDelegate.h"
#import <React/RCTI18nUtil.h>

//add this line to the didFinishLaunchingWithOptions method before return YES
  [[RCTI18nUtil sharedInstance] allowRTL:YES];
  [[RCTI18nUtil sharedInstance] forceRTL:YES];
Posted by: Guest on August-14-2021
0

rtl support react native

add two below codes to App.js => 
I18nManager.allowRTL(true);
I18nManager.forceRTL(true);
Posted by: Guest on February-13-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language