{"id":19032746,"url":"https://github.com/joutvhu/number_text_input_formatter","last_synced_at":"2025-04-23T16:43:26.722Z","repository":{"id":56913989,"uuid":"519550022","full_name":"joutvhu/number_text_input_formatter","owner":"joutvhu","description":"Number Text Input Formatter for Flutter","archived":false,"fork":false,"pushed_at":"2024-05-13T02:43:49.000Z","size":43,"stargazers_count":7,"open_issues_count":4,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-18T02:44:59.725Z","etag":null,"topics":["currency","flutter","formatter","input","number","percentage","text"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/number_text_input_formatter","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/joutvhu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2022-07-30T15:17:19.000Z","updated_at":"2024-06-22T12:18:02.000Z","dependencies_parsed_at":"2023-12-17T19:28:14.635Z","dependency_job_id":"bcbdbb4a-b07c-4493-a49d-66859c175f37","html_url":"https://github.com/joutvhu/number_text_input_formatter","commit_stats":{"total_commits":24,"total_committers":2,"mean_commits":12.0,"dds":0.04166666666666663,"last_synced_commit":"283d71510b4c7da227dedcb267c8a58182ac87b4"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joutvhu%2Fnumber_text_input_formatter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joutvhu%2Fnumber_text_input_formatter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joutvhu%2Fnumber_text_input_formatter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joutvhu%2Fnumber_text_input_formatter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joutvhu","download_url":"https://codeload.github.com/joutvhu/number_text_input_formatter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250472119,"owners_count":21436081,"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":["currency","flutter","formatter","input","number","percentage","text"],"created_at":"2024-11-08T21:30:47.131Z","updated_at":"2025-04-23T16:43:26.696Z","avatar_url":"https://github.com/joutvhu.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Number Text Input Formatter\n\nNumber Text Input Formatter for Flutter.\n\n## Installation\n\n```yaml\n# Add into pubspec.yaml\ndependencies:\n  number_text_input_formatter: ^lastVersion\n```\n\n## Usage\n\nFor number\n\n```dart\nTextField(\n  inputFormatters: [\n    NumberTextInputFormatter(\n      integerDigits: 10,\n      decimalDigits: 2,\n      maxValue: '1000000000.00',\n      decimalSeparator: '.',\n      groupDigits: 3,\n      groupSeparator: ','\n      allowNegative: false,\n      overrideDecimalPoint: true,\n      insertDecimalPoint: false,\n      insertDecimalDigits: true,\n    ),\n  ],\n  keyboardType: TextInputType.number,\n),\n```\n\nFor currency\n\n```dart\nTextField(\n  inputFormatters: [CurrencyTextInputFormatter()],\n  keyboardType: TextInputType.number,\n),\n```\n\nFor percentage\n\n```dart\nTextField(\n  inputFormatters: [PercentageTextInputFormatter()],\n  keyboardType: TextInputType.number,\n),\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoutvhu%2Fnumber_text_input_formatter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoutvhu%2Fnumber_text_input_formatter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoutvhu%2Fnumber_text_input_formatter/lists"}