Avikrit Khati
Avikrit Khati

Reputation: 881

Form Validation for a React Native App

I am trying to validate email address and password of a user while login. I tried to use stateless form but it doesn't seem to work with current version of React Native. Please Help.

Upvotes: 0

Views: 1178

Answers (1)

Meysam Izadmehr
Meysam Izadmehr

Reputation: 3262

react-native-stateless-form is not supporting react native +0.25. You can use other fork of project, for example ms88privat fork.

update:

Install it with this command:

npm install --save https://github.com/ms88privat/react-native-stateless-form

Upvotes: 2

Related Questions