RTl Support

Setup RTL support

To set the RTL support, you need to go to the following file:-

src/appRedux/reducers/Settings.js

In this file, you can look for "isDirectionRTL" property and set its value true ad boolean.

const initialSettings = {
  navStyle: NAV_STYLE_FIXED,
  layoutType: LAYOUT_TYPE_FULL,
  themeType: THEME_TYPE_SEMI_DARK,
  themeColor: '',

  isDirectionRTL: true, // To enable RTL support, set true
  locale: {
    languageId: 'english',
    locale: 'en',
    name: 'English',
    icon: 'us'
  }
};

Last updated