react-resizable
react-resizable copied to clipboard
Is there way to adjust resizableBox for arabic language modal (right to left ) ?
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
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.