easy_translations 0.0.1 easy_translations: ^0.0.1 copied to clipboard
Add translations to your Flutter app with ease.
Easy translations #
A light-weight translation package for Flutter.
import 'package:easy_translations/easy_translations.dart';
BlocProvider(
create: (context) => LocalizationCubit(
translations: CustomTranslations(),
initialLocale: Locale('it'),
fallbackLocale: Locale('en'),
),
child: MaterialApp(
...
),
),
Translate #
Text(context.tr('Hello World'))