logo The World’s #1 Bootstrap 4 HTML, Angular 10, React, VueJS & Laravel
Admin Dashboard Theme

React Right-to-Left (RTL)

Overview

The RTL does not enabled by default and also the RTL CSS files does not included. You can use the prepared webpack bundler to convert the existing SCSS files into RTL CSS files. You can find the webpack.config.js in each of the RTL demo folder.

Generate RTL CSS

  1. Go to [metronic]/theme/react/[demo]/ folder.

    cd theme/react/demo1
  2. Run command to install React dependencies and extra webpack plugins for RTL generate.

    npm install
  3. Run npm script command to execute webpack with RTL.

    npm run rtl
  4. You will get the bundle CSS with RTL inside [metronic]/theme/react/[demo]/src/sass/style.react.rtl.css folder. For React RTL to be enabled, this RTL CSS need to be included in the React.

  5. Open the React common index.js file from [metronic]/theme/react/[demo]/src/index.js. Change the main SCSS file path to RTL CSS path. Change "./index.scss" to RTL CSS "./sass/style.react.rtl.css".

  6. Open the React index.html file from [metronic]/theme/react/[demo]/public/index.html. Add the RTL attributes to the body tag.

    <body direction="rtl" dir="rtl" style="direction: rtl">
  7. Run the React as usual using yarn start command.
  8. For Material-UI RTL version follow official documentation instruction.