Works on all Flutter platforms
iOS
Android
Web
macOS
Windows
Linux
# pubspec.yaml
dependencies:
intlpull_flutter: ^1.0.0
flutter_localizations:
sdk: flutterimport 'package:intlpull_flutter/intlpull.dart';
void main() async {
await IntlPull.init(projectId: 'your-project-id');
runApp(MyApp());
}// Type-safe translations
Text(AppLocalizations.of(context)!.welcomeMessage)
// Or with IntlPull
Text(IntlPull.t('welcome_message'))Native support for Application Resource Bundle (.arb) files used by Flutter.
Update translations without app store releases. Push updates instantly.
Generate type-safe Dart code from your translations automatically.
Works on iOS, Android, Web, Desktop. One translation system for all.
Update translations without going through app store review. Push translation updates to your Flutter app instantly.