dlutton / flutter_language_id

Flutter Language Identification package

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Language Identification

pub package

A flutter plugin to identify language using Google's ML Kit. (Swift,Java)

Features

  • Android, iOS
    • identify language
    • identify possible languages

To use this plugin :

iOS

Google's ML Kit requires a minimum deployment target of 10.0. You can add the line platform :ios, '10.0' in your iOS project Podfile.

You may also need to update your app's deployment target to 10.0 using Xcode. Otherwise, you may see compilation errors.

Flutter

  • add the dependency to your pubspec.yaml
  dependencies:
    flutter:
      sdk: flutter
    flutter_language_identification:
  • instantiate FlutterLanguageIdentification
FlutterLanguageIdentification languageIdentification = FlutterLanguageIdentification();

identifyLanguage, identifyPossibleLanguages

Future _identifyLanguage() async{
    await languageIdentification.identyLanguage("Hello World");
}

Future _identifyPossibleLanguages() async{
    await languageIdentification.identifyPossibleLanguages("Hello World");
}

Listening for platform calls to receive results

languageIdentification.setSuccessHandler((message) {
    setState(() {
    print(message);
    _result = message;
    });
});

languageIdentification.setErrorHandler((message) {
    setState(() {
    print(message);
    });
});

languageIdentification.setFailedHandler((message) {
    setState(() {
    print(message);
    _result = message;
    });
});

About

Flutter Language Identification package

License:MIT License


Languages

Language:Dart 33.8%Language:Java 26.6%Language:Ruby 21.8%Language:Swift 13.5%Language:Objective-C 4.4%