react-native-vietnam / react-native-search-box

A simple search box with animation, inspired from ios search bar. Lightweight, fast, flexible.
476 stars 132 forks source link

Invalid NSTextAlignment 'text' #53

Closed jhaniv closed 6 years ago

jhaniv commented 6 years ago

The latest RTL feature introduced a bug when using the component on iOS without isRtl.

on line 412: textAlign: isRtl ? 'right' : 'text', should be textAlign: isRtl ? 'right' : 'left', ?

Right now it breaks with Invalid NSTextAlignment 'text' error

roycclu commented 6 years ago

Can confirm that changing 'text' to 'left' solves the issue. @jhaniv would you like to make a PR?

jhaniv commented 6 years ago

Yes it does solve it. @roycclu - happy to do a PR. need permissions to push my branch.

anhtuank7c commented 6 years ago

Please use latest version 0.0.16