Stateless presentational form components for React Native

Once again, forms are getting attention, this time Daniel Weinmann takes huge inspiration from Farid from Safi's react-native-gifted-form for his new stateless form components.

His goal is to achieve common patterns in mobile forms' user interaction, but without managing any state at all, so other libraries like redux-form could be used for what they really shine.

react-native-stateless-form on GitHub

This package is inspired by FaridSafi/react-native-gifted-form, and my intention is to merge with it in the future.

The reason for creating a new package is that I want the form components to be presentational only, and not to store state at all. This way we can easily integrate with Redux Form, any other form management tool, or even implement our own form management.

Form components for React Native