{"id":13551323,"url":"https://github.com/adar2378/pin_code_fields","last_synced_at":"2026-02-20T09:31:58.791Z","repository":{"id":37445122,"uuid":"199140352","full_name":"adar2378/pin_code_fields","owner":"adar2378","description":"A flutter package which will help you to generate pin code fields with beautiful design and animations. Can be useful for OTP or pin code inputs 🤓🤓","archived":false,"fork":false,"pushed_at":"2026-02-16T19:12:07.000Z","size":72250,"stargazers_count":781,"open_issues_count":2,"forks_count":386,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-02-17T00:43:00.261Z","etag":null,"topics":["android","animation","dart","flutter","ios","otp","pin","shapes"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/pin_code_fields","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adar2378.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-07-27T08:50:33.000Z","updated_at":"2026-02-16T19:12:12.000Z","dependencies_parsed_at":"2024-08-01T12:19:08.364Z","dependency_job_id":"65460bf5-796c-4716-ab57-f684d9662f62","html_url":"https://github.com/adar2378/pin_code_fields","commit_stats":{"total_commits":280,"total_committers":51,"mean_commits":5.490196078431373,"dds":"0.40714285714285714","last_synced_commit":"5ce8a7f54485a54acf20426cef7b3c33c9208ed1"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/adar2378/pin_code_fields","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adar2378%2Fpin_code_fields","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adar2378%2Fpin_code_fields/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adar2378%2Fpin_code_fields/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adar2378%2Fpin_code_fields/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adar2378","download_url":"https://codeload.github.com/adar2378/pin_code_fields/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adar2378%2Fpin_code_fields/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29560074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["android","animation","dart","flutter","ios","otp","pin","shapes"],"created_at":"2024-08-01T12:01:46.205Z","updated_at":"2026-02-20T09:31:58.785Z","avatar_url":"https://github.com/adar2378.png","language":"Dart","funding_links":[],"categories":["Dart","Packages","Developer Tools \u0026 Libraries"],"sub_categories":["🚀 How to contribute"],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"460\" src=\"https://i.ibb.co/X5qxF7x/export-banner.png\"\u003e\n\u003c/p\u003e\n\n\u003ca href=\"https://pub.dev/packages/pin_code_fields\"\u003e\u003cimg src=\"https://img.shields.io/pub/v/pin_code_fields\"\u003e\u003c/a\u003e\n\n# Pin Code Fields\n\nA highly customizable Flutter package for PIN code and OTP input fields with beautiful design and animations.\n\n**Version 9.0** introduces a new **headless architecture** - use the ready-made Material Design implementation or build completely custom UIs!\n\n## Package Location\n\nThe publishable package is located at:\n\n```\npackages/pin_code_fields/\n```\n\n📦 **[View Package README](packages/pin_code_fields/README.md)** for full documentation.\n\n## Quick Start\n\n```yaml\ndependencies:\n  pin_code_fields: ^9.0.0\n```\n\n```dart\nimport 'package:pin_code_fields/pin_code_fields.dart';\n\n// Material Design (ready to use)\nMaterialPinField(\n  length: 6,\n  onCompleted: (pin) =\u003e print('PIN: $pin'),\n)\n\n// Custom UI (headless)\nPinInput(\n  length: 4,\n  builder: (context, cells) =\u003e YourCustomUI(cells),\n)\n```\n\n## Repository Structure\n\n```\npin_code_fields/\n├── packages/\n│   └── pin_code_fields/      # 📦 Main package\n│       ├── lib/\n│       │   └── src/\n│       │       ├── core/     # Headless input engine\n│       │       └── material/ # Material Design implementation\n│       ├── example/\n│       ├── test/\n│       ├── README.md\n│       ├── CHANGELOG.md\n│       └── LICENSE\n├── docs/\n│   └── FEATURE_COMPARISON.md\n├── melos.yaml\n└── CLAUDE.md\n```\n\n## Development\n\nThis project uses [melos](https://melos.invertase.dev/) for monorepo management.\n\n```bash\n# Install melos\ndart pub global activate melos\n\n# Bootstrap workspace\nmelos bootstrap\n\n# Run tests\nmelos test\n\n# Run analyzer\nmelos analyze\n```\n\n## Features\n\n- 🎨 **Headless Architecture** - Full control over UI rendering\n- 📱 **Material Design Ready** - Beautiful out-of-the-box implementation\n- 🎮 **Unified Controller** - Single controller for text, focus, and errors\n- ✨ **Rich Animations** - Scale, fade, slide entry animations\n- 🔐 **Obscure Support** - Character or custom widget obscuring\n- 📋 **Paste Support** - Long-press to paste from clipboard\n- 📝 **Form Integration** - Works with Flutter's Form widget\n- 📲 **Autofill Support** - SMS OTP autofill for iOS/Android\n- 💫 **Error Animation** - Shake animation with programmatic control\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nMIT License - see [LICENSE](packages/pin_code_fields/LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadar2378%2Fpin_code_fields","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadar2378%2Fpin_code_fields","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadar2378%2Fpin_code_fields/lists"}