react-resizable icon indicating copy to clipboard operation
react-resizable copied to clipboard

Is there way to adjust resizableBox for arabic language modal (right to left ) ?

Open laubeltran1 opened this issue 3 years ago • 1 comments

Thanks for opening an issue!

Please select the type of issue you're reporting. For questions.

  • [ ] Bug
  • [ ] Feature Request
  • [x] Question

Problem Report

I implemented the functionality in a modal to adjust the size, for english language it works as expected but for arabic, as it is known to be from right to left, the resizable is lost.

System Info

Node Version: 16.13.1 Browser: Chrome - Firefox OS: MacOS

laubeltran1 avatar Jan 26 '22 08:01 laubeltran1

You can just change resizeHandles prop depend on your language. In my case I use only X axis for resizing so I am setting something like this.

axis='x' resizeHandles={language === 'ar' ? ['ne'] : ['w']}

Just play with resizeHandles prop and you will reach to your needed result.

alexandermirzoyan avatar Dec 13 '23 12:12 alexandermirzoyan