bloc_architecture_localization 0.0.7 copy "bloc_architecture_localization: ^0.0.7" to clipboard
bloc_architecture_localization: ^0.0.7 copied to clipboard

Localization for BLoC Architecture

Bloc Architecture Localization #

Pub Version

A localization for BLoC Architecture

Usage #

  1. Add bloc_architecture_localization to your pubspec.yaml
  2. Applications need to include BlocArchitectureLocalizations.delegate() in their app's

For example:

import 'package:bloc_architecture_localization/bloc_architecture_localizations.dart';

return MaterialApp(
    localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
        ...AppLocalizations.localizationsDelegates,
        BlocArchitectureLocalizations.delegate,     // <- Add this line
    ],
    supportedLocales: AppLocalizations.supportedLocales,
    home: MyApplicationHome(),
);

Contributing #

Contributions are always welcome!

Please check out our contribution guidelines for more details.

License #

Bloc Architecture Core is licensed under the MIT License.

Please check out our code of conduct for more details.