Since app localization is very common with mobile app development I thought to write about one of my favorite flutter plugins. App internationalization is really fast and easy with easy_localization plugin. Specially with the latest update. I will guide you to create a simple app page with change language functionality.

To get started add the plugin dependency to your pubspec.yaml file and run packages get command.

dependencies:   
  easy_localization: ^2.3.3

I used the above version. Always make sure you got the latest version of the plugin. Import the plugin to your dart file.

import 'package:easy_localization/easy_localization.dart';

#language-translation #ios #android #flutter

Flutter Internationalization with Easy Localization
10.70 GEEK