0 purchases
bloc architecture localization
Bloc Architecture Localization #
A localization for BLoC Architecture
Usage #
Add bloc_architecture_localization to your pubspec.yaml
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(),
);
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.