efik_localization 0.0.1 copy "efik_localization: ^0.0.1" to clipboard
efik_localization: ^0.0.1 copied to clipboard

This package provides localization support for Efik locale

efik_localization #

This package provides localization support for Efik locale.

Getting Started #

Depend on it #

Add this to your package's pubspec.yaml file:

dependencies:
  efik_localization: <latest version>

Install it #

You can install packages from the command line:

with Flutter:

$ flutter pub get

Import it #

import 'package:efik_localization/efik_localization.dart';

Use it #

MaterialApp(
      localizationsDelegates: [
        ...
        EfMaterialLocalizations.delegate,
        EfCupertinoLocalizations.delegate,
        EfWidgetLocalizations.delegate
      ],
      supportedLocales: [
        const Locale('ef', ''),
      ],
      locale: Locale('ef'),
    );

if you use EasyLocalizations

    EasyLocalization(
      supportedLocales: const [
        Locale('en'),
        Locale('ef')
      ],
      path: 'assets/translations',
      fallbackLocale: const Locale('en'),
      startLocale: const Locale('ef'),
      child: const MyApp(),
    ),
1
likes
120
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

This package provides localization support for Efik locale

Repository

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, flutter_localizations, intl, localized

More

Packages that depend on efik_localization