{"id":19312011,"url":"https://github.com/weblineindia/react-native-input-class","last_synced_at":"2025-07-22T22:05:49.247Z","repository":{"id":129984915,"uuid":"280425147","full_name":"weblineindia/React-Native-Input-Class","owner":"weblineindia","description":"A React Native based component for creating Input Class in your application.","archived":false,"fork":false,"pushed_at":"2024-03-08T10:13:41.000Z","size":141,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-19T13:35:41.440Z","etag":null,"topics":["input-class","input-method","input-validation","inputfield","react-components","react-input","react-input-class","react-native","react-native-component","react-native-components","react-native-input","react-native-library","react-native-module","react-native-plugin","reactnative","reactnativedemo"],"latest_commit_sha":null,"homepage":"https://www.weblineindia.com/software-development-resources.html","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/weblineindia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-17T12:59:55.000Z","updated_at":"2024-03-08T09:33:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"f24d5562-59df-486f-a6f5-13c4ca057bab","html_url":"https://github.com/weblineindia/React-Native-Input-Class","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/weblineindia/React-Native-Input-Class","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReact-Native-Input-Class","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReact-Native-Input-Class/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReact-Native-Input-Class/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReact-Native-Input-Class/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weblineindia","download_url":"https://codeload.github.com/weblineindia/React-Native-Input-Class/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FReact-Native-Input-Class/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266580426,"owners_count":23951219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["input-class","input-method","input-validation","inputfield","react-components","react-input","react-input-class","react-native","react-native-component","react-native-components","react-native-input","react-native-library","react-native-module","react-native-plugin","reactnative","reactnativedemo"],"created_at":"2024-11-10T00:32:07.365Z","updated_at":"2025-07-22T22:05:49.221Z","avatar_url":"https://github.com/weblineindia.png","language":"JavaScript","readme":"# React Native - Input Class\n\nA React Native based component for creating Input Class in your application. \n\n## Getting started\n\n- [Demo](#demo)\n- [Installation](#installation)\n- [Supported versions](#supported-versions)\n- [Usage](#usage)\n- [Props](#props)\n- [Methods](#methods)\n- [Want to Contribute?](#want-to-contribute?)\n- [Collection of Components](#collection-of-components)\n- [Changelog](#changelog)\n- [License](#license)\n- [Keywords](#keywords)\n\n## Demo\n\n[![](InputClass.png)](https://github.com/weblineindia/React-Native-Input-Class/InputClass.png)\n\n## Installation\n\n`$ npm install rn-weblineindia-input-class --save`\n\n## Supported versions\n\nWe have tested this component in ReactNative 0.60 - 0.62.5. You can still use it in other versions.\n\n## Usage\n\n```javascript\nimport InputClass from 'rn-weblineindia-input-class';\n\n\u003cInputClass\n  placeholder=\"Email\"\n  type=\"Email\"\n  value={email}\n  onChangeText={(text) =\u003e this.setState({ email: text })}\n  keyboardType=\"email-address\"\n  onEndError={(status) =\u003e this.onEndError(status)}\n/\u003e\n\n```\n\n## Props\n\n| **Props**            | **Type** | **Required** | **Description**                                                               |\n|----------------------|----------|--------------|-------------------------------------------------------------------------------|\n| type                 | `string` | yes          | Type of input class like, Text, Email, Number, PhoneNumber                    |\n| value                | `string` | yes          | Value to be shown in input class                                              |\n| secureTextEntry      | `boolean`| no           | Set true when you want password, encrypted content                            |\n| keyboardType         | `string` | no           | Keyboard type like, email-address, number, phone-number, default              |\n| style                | `object` | yes          | Style object to set style to input class                                      |\n| placeholder          | `string` | no           | Placeholder text which is shown when to instruct user about input class       |\n\n\n## Methods\n\n| **Method**           | **Description**                                                                                                                          |\n|----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| onChangeText         | Callback method that is called when user change text on Input Class.                                                                     |\n| onEndError           | Callback method that is called when user end editing and validation will be check and give call back to InputClass Wrong Email Format.   |\n\n\n## Want to Contribute?\n\n- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).\n- [Fork it](http://help.github.com/forking/).\n- Create new branch to contribute your changes.\n- Commit all your changes to your branch.\n- Submit a [pull request](http://help.github.com/pull-requests/).\n\n-----\n\n## Collection of Components\n\nWe have built many other components and free resources for software development in various programming languages. Kindly click here to view our [Free Resources for Software Development](https://www.weblineindia.com/software-development-resources.html).\n\n------\n\n## Changelog\n\nDetailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.md).\n\n------\n\n## License\n\n[MIT](LICENSE)\n\n[mit]: https://github.com/weblineindia/React-Native-Input-Class/blob/master/LICENSE\n\n------\n\n### Keywords\n\n rn-weblineindia-input-class, react-native-input-class, input-class, react-native\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Freact-native-input-class","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweblineindia%2Freact-native-input-class","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Freact-native-input-class/lists"}