How can I dynamically import multiple CSS files in a React Native project based on language?
import React, { Component } from "react";
if(this.state.language === "he"){
import styles from "./he";
}else{
import styles from "./en";
}
I attempted the above code but it's not functioning as expected. My goal is to include separate CSS files for LTR and RTL layouts depending on the chosen language.