You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently using this library with React Native 0.59.9, and I've been using the Hoshi effect. The text currently overflows on the right side due to the 'inputPadding' attribute. Setting it to 0 removes any overflow, but makes the label and input stick to each other.
Setting inputPadding to any number moves the overflow text to the right by that number. See the example image below where inputPadding has been set to 16.
Any workaround/help appreciated.
Thanks!
The text was updated successfully, but these errors were encountered:
There is no way to fix that only using styles, because the width of the TextInput is set by this lib. But you can make it work if you change the line 68 to width: width - ( 2 * inputPadding),
I'm currently using this library with React Native 0.59.9, and I've been using the Hoshi effect. The text currently overflows on the right side due to the 'inputPadding' attribute. Setting it to 0 removes any overflow, but makes the label and input stick to each other.
Setting inputPadding to any number moves the overflow text to the right by that number. See the example image below where inputPadding has been set to 16.
Any workaround/help appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: