akveo / akveo/react-native-ui-kitten
accessoryRight of Input prop not working on expo andriod
- Lingua principale
- TypeScript
- Stelle
- 10.7k
- Fork
- 962
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
## 🐛 Bug Report
When I tried to render an icon with accessoRight it gives an error on my expo go app that "Attempt to invoke virtual method 'int.java.lang.Integer.intValue()' on a null object reference"
It does not give the error on ios
## To Reproduce
`
export const PasswordInput: FC = ({ placeholder, value, onChangeText, status }) => {
const [secureTextEntry, setSecureTextEntry] = useState(true);
const theme = useTheme();
const toggleSecureEntry = () => {
setSecureTextEntry(!secureTextEntry);
};
const renderIcon = (properties: IconProps) => (
);
return (
);
};
`
## Expected behavior
You should get the error if you run it on expo andriod
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.