Text overflow on Android
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!
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),
https://github.com/halilb/react-native-textinput-effects/blob/b82383efc55e42526ad860f036fbf86ad5fad3e8/lib/Hoshi.js#L61-L78