
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
github.com/ronak301/react-native-submit-button
Advanced tools
An Animated Submit Button. Works on both android and IOS.

https://dribbble.com/shots/1426764-Submit-Button
https://github.com/ronak301/react-native-submit-button.gitreact-native link else rnpm linkimport SubmitButton from 'react-native-submit-button';
class SubmitButtonExample extends Component {
render() {
return (
<View style={{flex:1}}>
<SubmitButton />
</View>
);
}
}
| Property | Type | Default | Description |
|---|---|---|---|
| primaryColor | string | rgb(30, 205, 151) | optional user-defined primary color |
| secondaryColor | string | white | optional user-defined secondary color |
| buttonState | string | normal | button state can be one of normal, success, error |
| width | number | 180 | optional user-defined width for button |
| height | number | 54 | optional user-defined height for button |
| buttonText | string | 'Submit' | optional user-defined text on button |
| buttonTextWhenReady | string | optional user-defined text on button when success (either provide this or give iconName to be shown once submitted successfully ) , this will get priority over icon name | |
| iconName | string | 'check' | optional any icon name from fontello icons , to be shown once we got success. |
| textStyle | object | optional text styles to override existing styles | |
| buttonStyle | object | optional button styles to override existing styles | |
| animationDuration | number | 200 | number in ms. Time to fold button. |
| errorColor | string | #ff6666 | error color |
| onSubmit | function | function to call on button press | |
| onSuccess | function | function to call on success | |
| onError | function | function to call on error |
FAQs
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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.