{"id":30858965,"url":"https://github.com/solid-software/languagetool_textfield","last_synced_at":"2025-09-07T14:55:48.589Z","repository":{"id":177234372,"uuid":"580503225","full_name":"solid-software/languagetool_textfield","owner":"solid-software","description":"🌐 Flutter text field that implements LanguageTool spellcheck.","archived":false,"fork":false,"pushed_at":"2025-08-28T15:49:19.000Z","size":7367,"stargazers_count":37,"open_issues_count":14,"forks_count":16,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-28T22:45:15.067Z","etag":null,"topics":["flutter","grammar-checker","languagetool","spellchecker","textfield"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solid-software.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,"zenodo":null}},"created_at":"2022-12-20T18:13:17.000Z","updated_at":"2025-08-28T15:49:24.000Z","dependencies_parsed_at":"2025-08-12T12:15:15.418Z","dependency_job_id":null,"html_url":"https://github.com/solid-software/languagetool_textfield","commit_stats":null,"previous_names":["solid-software/languagetool_textfield"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/solid-software/languagetool_textfield","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solid-software%2Flanguagetool_textfield","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solid-software%2Flanguagetool_textfield/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solid-software%2Flanguagetool_textfield/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solid-software%2Flanguagetool_textfield/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solid-software","download_url":"https://codeload.github.com/solid-software/languagetool_textfield/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solid-software%2Flanguagetool_textfield/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274051961,"owners_count":25214030,"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-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["flutter","grammar-checker","languagetool","spellchecker","textfield"],"created_at":"2025-09-07T14:55:39.184Z","updated_at":"2025-09-07T14:55:48.569Z","avatar_url":"https://github.com/solid-software.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LanguageTool TextField\n[![style: solid](https://img.shields.io/badge/style-solid-orange)](https://pub.dev/packages/solid_lints)\n[![langtool](https://nokycucwgzweensacwfy.supabase.co/functions/v1/get_project_badge?projectId=212)](https://nokycucwgzweensacwfy.supabase.co/functions/v1/get_project_url?projectId=212)\n\nProviding powerful spell-checking and grammar correction capabilities.\n\n\u003cdiv\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/solid-software/languagetool_textfield/master/doc/misspeling_langtool.png\" width=\"310\" height=\"667\"\u003e\n\u0026nbsp\n\u0026nbsp\n\u003cimg src=\"https://raw.githubusercontent.com/solid-software/languagetool_textfield/master/doc/typo_langtool.png\" width=\"310\" height=\"667\"\u003e\n\u0026nbsp\n\u0026nbsp\n\u003cimg src=\"https://raw.githubusercontent.com/solid-software/languagetool_textfield/master/doc/uncategorized_langtool.png\" width=\"310\" height=\"667\"\u003e\n\u003c/div\u003e\n\n## Features\n\nThe LanguageTool TextField package is a spell-checker designed for Flutter apps. It integrates with the LanguageTool API to offer real-time spell-checking capabilities. This package will enhance text input accuracy by automatically detecting and highlighting spelling errors as users type. \n\nIt's particularly useful for apps that require precise text input, like chat or note-taking apps. By using the LanguageTool TextField package, developers can improve the user experience by providing an intuitive and reliable spell-checking feature.\n\n\n## Getting started\n\n1. Run this command:\n\n```dart\nflutter pub add languagetool_textfield\n```\n\n2. Import the package:\n\n```dart\nimport 'package:languagetool_textfield/languagetool_textfield.dart';\n```\n\n\n## Quick Start\nTo start using the plugin, copy this code or follow the example project in 'languagetool_textfield/example'\n\n```dart\n// Create a text controller for the Widget\nfinal _controller = LanguageToolController();\n\n// Use the text field widget in your layout\nchild: LanguageToolTextField(\n  controller: _controller,\n\n  // A language code like en-US, de-DE, fr, or auto to guess\n  // the language automatically.\n  // language = 'auto' by default.\n  language: 'en-US',\n);\n\n// Don't forget to dispose the controller\n_controller.dispose();\n```\n\n## Using Debounce and Throttle in LanguageTool TextField\n\nTo incorporate the debounce or throttle functionality into the `LanguageTool TextField`, follow these:\n\nCreate a `LanguageToolController` and provide the desired debounce/throttle delay duration and delay type:\n   ```dart\n   final _controller = LanguageToolController(\n     // If the delay value is [Duration.zero], no delay is applied.\n     delay: Duration(milliseconds: 500), // Set the debounce/throttle delay duration here\n     delayType: DelayType.debouncing, // Choose either DelayType.debouncing or DelayType.throttling\n   );\n```\n\n  `DelayType.debouncing` - Calls a function when a user hasn't carried out the event in a specific amount of time.\n\n  `DelayType.throttling` - Calls a function at intervals of a specified amount of time while the user is carrying out the event.\n\n## Legal\n\nThis is an unofficial plugin. We are not affiliated with LanguageTool.\nAll logos are of their respected owners.\n\n## Current issues\n\nCurrent issues list [is here](https://github.com/solid-software/languagetool_textfield/issues).\\\nFound a bug? [Open the issue](https://github.com/solid-software/languagetool_textfield/issues/new).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolid-software%2Flanguagetool_textfield","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolid-software%2Flanguagetool_textfield","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolid-software%2Flanguagetool_textfield/lists"}