Wieldy
Search…
Wieldy
Overview
Package Content
Installation and Setup
Environment Setup
Project Setup
Structure
Folder Structure
Layouts
Settings
Template Settings
Customizing Layout
Updating Color Scheme
Fonts
Updating Template Mode
RTl Support
Defining New Route
Adding New Language
Firebase Integration
Next Js
Project Setup
Powered By
GitBook
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.
1
const initialSettings = {
2
navStyle: NAV_STYLE_FIXED,
3
layoutType: LAYOUT_TYPE_FULL,
4
themeType: THEME_TYPE_SEMI_DARK,
5
themeColor: '',
6
7
isDirectionRTL: true, // To enable RTL support, set true
8
locale: {
9
languageId: 'english',
10
locale: 'en',
11
name: 'English',
12
icon: 'us'
13
}
14
};
Copied!
Settings - Previous
Updating Template Mode
Next - Settings
Defining New Route
Last modified
10mo ago
Copy link