localizely_sdk 2.6.4 copy "localizely_sdk: ^2.6.4" to clipboard
localizely_sdk: ^2.6.4 copied to clipboard

Localizely SDK for Flutter enables Over-the-air translations update from Localizely cloud platform

Localizely SDK #

pub package

This package provides Over-the-Air translation updates and In-Context Editing from the Localizely platform.

Platform Support #

Android iOS Web MacOS Linux Windows

Over-the-Air translation updates #

Update translations for your Flutter applications over the air. Learn more

Works with projects that use Flutter's gen_l10n approach for internationalization, and with projects that use Flutter Intl IDE plugin / intl_utils.

Setup for gen_l10n #

1. Update pubspec.yaml file

dependencies:
  ...
  localizely_sdk: ^2.6.4
copied to clipboard

2. Generate localization files

dart run localizely_sdk:generate
copied to clipboard

3. Update localizationsDelegates and supportedLocales props of the MaterialApp widget.

import 'package:flutter_gen/gen_l10n/localizely_localizations.dart';

class MyApp extends StatelessWidget {
  ...

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      ...
      localizationsDelegates: LocalizelyLocalizations.localizationsDelegates,
      supportedLocales: LocalizelyLocalizations.supportedLocales,
      ...
    );
  }
}
copied to clipboard

4. Initialize Localizely SDK

import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter_gen/gen_l10n/localizely_localizations.dart';
import 'package:localizely_sdk/localizely_sdk.dart';

void main() {
  Localizely.init('<SDK_TOKEN>', '<DISTRIBUTION_ID>'); // Init sdk
  Localizely.setPreRelease(true); // Add this only if you want to use prereleases
  Localizely.setAppVersion('<APP_VERSION>'); // Add this only if you want to explicitly set the application version, or in cases when automatic detection is not possible (e.g. Flutter web apps)

  runApp(MaterialApp(
      onGenerateTitle: (context) => AppLocalizations.of(context)!.appTitle,
      localizationsDelegates: LocalizelyLocalizations.localizationsDelegates,
      supportedLocales: LocalizelyLocalizations.supportedLocales,
      home: HomePage()));
}

class HomePage extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  bool _isLoading = true;

  @override
  void initState() {
    super.initState();

    Localizely.updateTranslations().then( // Call 'updateTranslations' after localization delegates initialization
        (response) => setState(() {
              _isLoading = false;
            }),
        onError: (error) => setState(() {
              _isLoading = false;
            }));
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(title: Text(AppLocalizations.of(context)!.pageHomeTitle)),
        body: Center(
            child: _isLoading ? CircularProgressIndicator() : Column(children: <Widget>[Text(AppLocalizations.of(context)!.welcome)])));
  }
}
copied to clipboard

5. Run the app

Setup for Flutter Intl #

1. Update pubspec.yaml file

dependencies:
  ...
  localizely_sdk: ^2.6.4

flutter_intl:
  ...
  localizely:
    ota_enabled: true # Required for Over-the-Air translation updates
copied to clipboard

2. Trigger localization files generation by Flutter Intl IDE plugin or by intl_utils library

3. Initialize Localizely SDK

import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:localizely_sdk/localizely_sdk.dart';
import 'generated/l10n.dart';

void main() {
  Localizely.init('<SDK_TOKEN>', '<DISTRIBUTION_ID>'); // Init sdk 
  Localizely.setPreRelease(true); // Add this only if you want to use prereleases
  Localizely.setAppVersion('<APP_VERSION>'); // Add this only if you want to explicitly set the application version, or in cases when automatic detection is not possible (e.g. Flutter web apps)

  runApp(MaterialApp(
      onGenerateTitle: (context) => S.of(context).appTitle,
      localizationsDelegates: [
        S.delegate,
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
      ],
      supportedLocales: S.delegate.supportedLocales,
      home: HomePage()));
}

class HomePage extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  bool _isLoading = true;

  @override
  void initState() {
    super.initState();

    Localizely.updateTranslations().then( // Call 'updateTranslations' after localization delegates initialization
        (response) => setState(() {
              _isLoading = false;
            }),
        onError: (error) => setState(() {
              _isLoading = false;
            }));
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(title: Text(S.of(context).pageHomeTitle)),
        body: Center(
            child: _isLoading ? CircularProgressIndicator() : Column(children: <Widget>[Text(S.of(context).welcome)])));
  }
}
copied to clipboard

5. Run the app


In-Context Editing #

Instantly see how your translations fit on a real device without unnecessary app builds. Learn more.

Works with projects that use Flutter's gen_l10n approach for internationalization, and with projects that use Flutter Intl IDE plugin / intl_utils.

Setup for gen_l10n #

1. Update pubspec.yaml file

dependencies:
  ...
  localizely_sdk: ^2.6.4
copied to clipboard

2. Generate localization files

dart run localizely_sdk:generate
copied to clipboard

3. Update localizationsDelegates and supportedLocales props of the MaterialApp widget.

import 'package:flutter_gen/gen_l10n/localizely_localizations.dart';

class MyApp extends StatelessWidget {
  ...

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      ...
      localizationsDelegates: LocalizelyLocalizations.localizationsDelegates,
      supportedLocales: LocalizelyLocalizations.supportedLocales,
      ...
    );
  }
}
copied to clipboard

4. Wrap the root of the app

import 'package:localizely_sdk/localizely_sdk.dart';

void main() {
  runApp(
    LocalizelyInContextEditing(
      enabled: true, // set to false to disable In-Context Editing for production app builds
      child: MyApp(),
    ),
  );
}
copied to clipboard

5. Connect to Localizely

Run Flutter app on a real device and connect with Localizely.

Setup for Flutter Intl #

1. Update pubspec.yaml file

dependencies:
  ...
  localizely_sdk: ^2.6.4

flutter_intl:
  ...
  localizely:
    ota_enabled: true # Required for In-Context Editing
copied to clipboard

2. Trigger localization files generation by Flutter Intl IDE plugin or by intl_utils library

3. Wrap the root of the app

import 'package:localizely_sdk/localizely_sdk.dart';

void main() {
  runApp(
    LocalizelyInContextEditing(
      enabled: true, // set to false to disable In-Context Editing for production app builds
      child: MyApp(),
    ),
  );
}
copied to clipboard

4. Connect to Localizely

Run Flutter app on a real device and connect with Localizely.

Notes #

  • If you're not seeing updated translations in your app after an OTA retrieval, please check if you've followed all the necessary steps. Verify that you've created a new release on Localizely with the latest changes. Confirm whether you're working with prereleases enabled or disabled. Make sure the languages on Localizely match those in your app, and check if rebuilding the widget tree is required after the OTA request.

  • To automate the generation of necessary code for gen_l10n, you can utilize the build_runner package. The localizely_builder relies on your gen_l10n configuration and generates the required code accordingly.

  • In Flutter 3.22.0, running the command dart run localizely_sdk:generate may produce false analyzer errors. This issue has been resolved in Flutter 3.22.1. If you need to use 3.22.0 and encounter these errors, running flutter pub get again should fix the problem.

  • The localizely_sdk >=2.4.0 <2.5.0 requires an update of min platform versions:

    • Android: Require Android SDK 21 or newer

    • iOS: Require iOS 11 or newer

    As of version 2.5.0, these updates are no longer required due to changes in implementation.

Want to learn more? #

22
likes
160
points
22k
downloads

Publisher

verified publisherlocalizely.com

Weekly Downloads

2024.09.17 - 2025.04.01

Localizely SDK for Flutter enables Over-the-air translations update from Localizely cloud platform

Homepage

Topics

#i18n #l10n #localization

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

build, build_config, flutter, glob, http, intl, logger, meta, package_info_plus, path, path_provider, petitparser, shared_preferences, uuid, web, web_socket_channel, yaml

More

Packages that depend on localizely_sdk