Closed jhaniv closed 6 years ago
Can confirm that changing 'text' to 'left' solves the issue. @jhaniv would you like to make a PR?
Yes it does solve it. @roycclu - happy to do a PR. need permissions to push my branch.
Please use latest version 0.0.16
The latest RTL feature introduced a bug when using the component on iOS without
isRtl
.on line 412:
textAlign: isRtl ? 'right' : 'text',
should betextAlign: isRtl ? 'right' : 'left',
?Right now it breaks with
Invalid NSTextAlignment 'text'
error