![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@getty.io/react-native-form
Advanced tools
A Form component that automatically manages the state of your inputs, validation and navigation through the inputs like magic.
:construction: THIS IS A WORK IN PROGRESS :construction:
This form component automatically manages the state of its inputs created from the schema, validates them according to the rules passed on the rule keyword of the input schema, using the validate.js validators.
Your input will receive the value
, onChange
and error
props so that you can use the Form
with as much components as you need. We intend to add default inputs in a near future and devote our time into creating a solution for our forms that takes less time to use it then the solutions we have today.
import React from 'react'
import Form from '@gettyio/react-native-form'
import CustomInput from './CustomInput' // import your input
const Scene = () => (
<>
<Form
innerRef={el => (this.form = el)}
schema={[
{
type: CustomInput,
name: 'my-custom-input', // unique name
/* any props that you want to pass down to your input will be forwarded to it */
rules: {
'my-custom-input': {
presence: {
allowEmpty: false,
message: 'is required'
}
}
}
}
]}
/>
<Button onPress={this.form.submit()}>
<Text>Submit</Text>
</Button>
</>
)
Fork the project, do what you want and submit a PR back to us on the development
branch. We'll be more than happy to accept any contributions and suggestions.
FAQs
A painless form state manager.
We found that @getty.io/react-native-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.