flutter_google_translate 0.1.3 copy "flutter_google_translate: ^0.1.3" to clipboard
flutter_google_translate: ^0.1.3 copied to clipboard

Flutter API for google cloud translation - translate to given language, it can be store data and get result form last time.

flutter_google_translate #

A dart wrapper on the Google Could Translation API to be used in Flutter applications. As this is using the http REST API it works both with Android and iOS.

It can be cache the translate result and manage text translate status.

How to use it #

There is an example app that demonstrates how to use the plugin,

You just need to instantiate the class and you'll be ready to send translate texts.

NOTICE: This package uses in production, but only for the simple translation. If you need additional API please create issue or make PR.

class _MyHomePageState extends State<MyHomePage> {
  late Translation _translation;
  final String _text =
      'Toda persona tiene derecho a la educación. La educación debe ser gratuita, al menos en lo concerniente a la instrucción elemental y fundamental. La instrucción elemental será obligatoria. La instrucción técnica y profesional habrá de ser generalizada; el acceso a los estudios superiores será igual para todos, en función de los méritos respectivos.';
  TranslationModel _translated = TranslationModel(translatedText: '', detectedSourceLanguage: '');
  TranslationModel _detected = TranslationModel(translatedText: '', detectedSourceLanguage: '');

  @override
  void initState() {
    _translation = Translation(
      apiKey: 'YOUR_API_KEY',
    );
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Translate demo'),
      ),
      body: Center(
        child: Padding(
          padding: const EdgeInsets.all(20),
          child: Column(
            mainAxisAlignment: MainAxisAlignment.start,
            crossAxisAlignment: CrossAxisAlignment.start,
            children: <Widget>[
              Text(
                'Initial text',
                style: Theme
                    .of(context)
                    .textTheme
                    .headline3,
              ),
              Text(_text),
              SizedBox(height: 30),
              Text('Translated text', style: Theme
                  .of(context)
                  .textTheme
                  .headline3),
              Text(_translated.translatedText, style: TextStyle(color: Colors.blueAccent)),
              Text('Detected language - ${_translated.detectedSourceLanguage}',
                  style: TextStyle(color: Colors.red)),
              const SizedBox(height: 20),
              Text('Language detected with detectLang, without translation - ${_detected
                  .detectedSourceLanguage}',
                  style: TextStyle(color: Colors.red)),
            ],
          ),
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () async {
          _translated = await _translation.translate(text: _text, to: 'en');
          _detected = await _translation.detectLang(text: _text);
          setState(() {});
        },
        tooltip: 'Translate',
        child: Icon(Icons.language),
      ),
    );
  }
}
2
likes
110
points
106
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter API for google cloud translation - translate to given language, it can be store data and get result form last time.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

connectivity_plus, dart_ping, dart_ping_ios, drift, flutter, get, get_storage, google_api_headers, html_unescape, http, logger, path, path_provider, sqlite3, sqlite3_flutter_libs

More

Packages that depend on flutter_google_translate