languagetool_textfield

Creator: coderz1093

Last updated:

Add to Cart

Description:

languagetool textfield

LanguageTool TextField #


Providing powerful spell-checking and grammar correction capabilities.


 
 

 
 


Features #
The 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.
It'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.
Getting started #

Run this command:

flutter pub add languagetool_textfield
copied to clipboard

Import the package:

import 'package:languagetool_textfield/languagetool_textfield.dart';
copied to clipboard
Quick Start #
To start using the plugin, copy this code or follow the example project in 'languagetool_textfield/example'
// Create a text controller for the Widget
final _controller = LanguageToolController();

// Use the text field widget in your layout
child: LanguageToolTextField(
controller: _controller,

// A language code like en-US, de-DE, fr, or auto to guess
// the language automatically.
// language = 'auto' by default.
language: 'en-US',
);

// Don't forget to dispose the controller
_controller.dispose();
copied to clipboard
Using Debounce and Throttle in LanguageTool TextField #
To incorporate the debounce or throttle functionality into the LanguageTool TextField, follow these:
Create a LanguageToolController and provide the desired debounce/throttle delay duration and delay type:
final _controller = LanguageToolController(
// If the delay value is [Duration.zero], no delay is applied.
delay: Duration(milliseconds: 500), // Set the debounce/throttle delay duration here
delayType: DelayType.debouncing, // Choose either DelayType.debouncing or DelayType.throttling
);
copied to clipboard
DelayType.debouncing - Calls a function when a user hasn't carried out the event in a specific amount of time.
DelayType.throttling - Calls a function at intervals of a specified amount of time while the user is carrying out the event.
Legal #
This is an unofficial plugin. We are not affiliated with LanguageTool.
All logos are of their respected owners.
Current issues #
Current issues list is here.
Found a bug? Open the issue.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.