Ionic 4 , rtl direction

hey , anyone have a solution for set direction at ionic 4 app without reloading app .

You can easily set the text direction to “right-to-left” via applied dynamic css classes

p.rtl {
  direction: rtl;
}

In your src/app/app.component.html put <ion-app dir="{{textDir}}"> and then depending on the user’s language change that variable.