From ac7b853bce398e2cd9b22f2037e1060a41f5cd5f Mon Sep 17 00:00:00 2001 From: William Hong Jun Cho Date: Mon, 2 Feb 2026 07:07:19 -0300 Subject: [PATCH] chore: Revise i18next package installation instructions Updated usage instructions for adding i18next package. Signed-off-by: William Hong Jun Cho --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59754a7..f9e63ab 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ Mind that this is still a pre-1.0.0 so breaking changes may occur frequently. ## Usage -Simply declare the package in your `pubspec.yaml` +Simples way to add the latest version is to run `flutter pub add i18next` +Or you can declare it directly into your `pubspec.yaml` file: ```yaml dependencies: - i18next: ^0.5.0 + i18next: ^0.9.0 # (or the latest version available) ``` To use it with flutter's `LocalizationsDelegate` you first create `I18NextLocalizationDelegate` and register it in your `WidgetsApp` (`MaterialApp` or `CupertinoApp`).