Native Progress bar Alignment from right to left

0
Hi Team, I have been working in an mobile application, where I'm using Mendix progress bar. I want to align the progress bar from right to left, which means the starting of the progress bar should be from right to left as show in the picture.
asked
1 answers
0

Hi Jayasree, 

 

You can do this by add a container and move the progress bar into this container, then you need to add a class on custom.js file and call the added class into the container

 

this the class 

export const reverce = {

  container: {

   transform: [{rotateZ: '180deg'}],

  }

}

 

image.png 

answered