{"id":19312031,"url":"https://github.com/weblineindia/flutter-textinput","last_synced_at":"2025-04-22T15:31:42.050Z","repository":{"id":129984599,"uuid":"281861626","full_name":"weblineindia/Flutter-TextInput","owner":"weblineindia","description":"A Flutter based Reusable component which provides TextInput with custom properties which can be used in any Flutter application.","archived":false,"fork":false,"pushed_at":"2023-12-27T08:23:08.000Z","size":2074,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-12-27T09:28:13.571Z","etag":null,"topics":["custom-textinput","customizable-textfield","flutter","flutter-components","flutter-demo","flutter-examples","flutter-library","flutter-plugin","flutter-text-input","flutter-textfield","reusable-components","reusable-textfield","text-input","textinput"],"latest_commit_sha":null,"homepage":"https://www.weblineindia.com/communities.html","language":"Dart","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","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}},"created_at":"2020-07-23T05:43:14.000Z","updated_at":"2023-12-27T09:28:14.604Z","dependencies_parsed_at":"2023-04-15T04:16:17.701Z","dependency_job_id":null,"html_url":"https://github.com/weblineindia/Flutter-TextInput","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FFlutter-TextInput","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FFlutter-TextInput/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FFlutter-TextInput/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FFlutter-TextInput/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weblineindia","download_url":"https://codeload.github.com/weblineindia/Flutter-TextInput/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223900372,"owners_count":17222028,"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","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":["custom-textinput","customizable-textfield","flutter","flutter-components","flutter-demo","flutter-examples","flutter-library","flutter-plugin","flutter-text-input","flutter-textfield","reusable-components","reusable-textfield","text-input","textinput"],"created_at":"2024-11-10T00:32:17.703Z","updated_at":"2024-11-10T00:32:21.610Z","avatar_url":"https://github.com/weblineindia.png","language":"Dart","readme":"# Flutter - Custom TextInput\n\nA Flutter based Reusable component which provides TextInput with custom properties which can be used in any Flutter application.\n\n\n## Table of contents\n- [Flutter Support](#flutter-support)\n- [Demo](#demo)\n- [Features](#features)\n- [Getting started](#getting-started)\n- [Usage](#usage)\n- [Methods](#methods)\n- [Want to Contribute?](#want-to-contribute)\n- [Need Help / Support?](#need-help)\n- [Collection of Components](#collection-of-Components)\n- [Changelog](#changelog)\n- [License](#license)\n- [Keywords](#Keywords)\n\n\n## Flutter Support\n\nVersion - Flutter 1.17 (stable)\n\nWe have tested our program in above versions, however you can use it in other versions as well.\n\n\n## Demo\n[![](Wli_CoustomTextInput.gif)](https://github.com/weblineindia/Flutter-TextInput/blob/master/Wli_CoustomTextInput.gif)\n\n------\n\n## Features\n\n* Customisable TextInput with more properties.\n\n* Common widget can be used for different textinput based on Type.\n\n1) Default TextInput\n\n2) Email TextInput\n\n3) Password TextInput\n\n4) Phone TextInput\n\n5) CreditCard TextInput.\n\n\n## Getting started\n\n* Download this sample project and import custom_text_input.dart file in your project.. \n* Update Widgets UI based on your requirements. \n\n\n## Usage\n\nSetup process is described below to integrate in project.\n\n### Methods\n\nConfigure CustomTextInput Widget \n      \n    // Put CustomTextInput Widget\n    CustomTextInput(\n     \n    )\n       \n    \nPass required properties\n    \n    // add text edit controller, hint text and input type\n    // textEditController used to fetch text from textInput\n    // hintTextString is used to show hint and used as a label\n    // inputType is used to identify which type of TextInput you needed, On basis of that you will get multiple properties and validations\n    CustomTextInput(\n      textEditController: _textController,\n      hintTextString: 'Enter Email',\n      inputType: InputType.Email,\n    )\n\n      \nAvailable InputTypes\n\n      //required parameter to identify type of TextInput\n      InputType.Default\n      InputType.Email\n      InputType.Number\n      InputType.Password\n      InputType.PaymentCard\n   \n\nSet below properties based on your requirements                  \n       \n    //optional property for enable border outside the textinput field\n    //it accepts boolean value, default value will be true\n    enableBorder: true,\n    \n    //optional property set theme color\n    //It will change border color and label color\n    //it accepts Color object, default value will be theme's primary color\n    themeColor: Theme.of(context).primaryColor,\n    \n    //optional property for set corner radius\n    //with this you can make rounded border as well as curve\n    //it accepts double value, default value will be 12.0\n    cornerRadius: 48.0,\n    \n    //optional property for set maximum character allows\n    //it accepts int value, default will be based on textinput type\n    maxLength: 24,\n    \n    //optional property for set prefix icon\n    //it accepts widget, default will be icon based on textinput type\n    //you can set color of icons as well through color property of icon\n    prefixIcon: Icon(Icons.person, color: Theme.of(context).primaryColor),\n    \n    //optional property for set text color\n    //it accepts color object, default will be Theme's primary color\n    textColor: Colors.black,\n    \n    //optional property for set customize error message\n    //it accepts string, default will be based on textinput type\n    errorMessage: 'User name cannot be empty',\n    \n    //optional property for set label name\n    //it accepts strings, default will be hint string\n    //this label will show when textinput animated while writing\n    labelText: 'User Name',\n\n\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## Need Help? \nIf you need help then feel free to contact our [Flutter developers](https://www.weblineindia.com/flutter-cross-platform-mobile-app-development.html).\n\n ------\n \n## Collection of Components\n We 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/communities.html)\n \n------\n\n## Changelog\nDetailed changes for each release are documented in [CHANGELOG](./CHANGELOG).\n\n## License\n\n[MIT](LICENSE)\n\n[mit]: https://github.com/weblineindia/Flutter-TextInput/blob/master/LICENSE\n\n## Keywords\nFlutter TextInput, Flutter Customisable TextField, Custom TextInput, Reusable TextField, Weblineindia\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Fflutter-textinput","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweblineindia%2Fflutter-textinput","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Fflutter-textinput/lists"}