RTL Mode
RTL Mode Setting
Angular provides a way to support both RTL and LTR languages by using CSS styles. You can use CSS's direction property to set the text direction of an element to either RTL or LTR.
By adding direction in src/index.html
you can change the direction right to left.
<html lang="en" dir="rtl">
There were some scss files which is needed to uncomment for using rtl are given below :
//rtl SCSS @import "rtl/structure/structure"; @import "rtl/components/components"; @import "rtl/plugins/plugins"; @import "rtl/apps/apps"; @import "rtl/pages/pages";