assets_codegen 1.1.4 copy "assets_codegen: ^1.1.4" to clipboard
assets_codegen: ^1.1.4 copied to clipboard

discontinued
outdated

Code generator for assets plugin. Using this with assets_annotation package and one of @AstHelp, @IntlHelp annotations. More info at README.md

assets_plugin #

Code generator for assets plugin

This plugin consist of three packages:

Getting Started #

@AstHelp part: #

This package should use with the asset_annotation package.

The main idea of this is a generating dart class with fields, which can help you access your assets in code and give you autocomplete and static preload of text assets in one place. For an example of usage go-to example project. You can configure the generator in a build.ya?ml file of your project. At now the only thing is an extension of files, which can be preloaded. By default, it is a .txt and .json files, but you can pass your additional types in this manner:

targets:
  $default:
    builders:
      assets_codegen:
        options:
          preload:
            - your_file_type
            - other_your_file_type

To use this package - install it and create file such as

import 'package:assets_annotations/assets_annotations.dart';
import 'package:flutter/services.dart'; // <== IT IMPORT IS REQUIRED FOR WORKING AUTO-PRELOAD FOR DEFINED FILE EXTENSIONS (json, txt, etc...)

part 'asset_helper.g.dart';

@AstHelp()
class AssetHelper with _$AssetHelper {}

Plugin will search assets section in your pubspec.ya?ml file and watch directories, which is described there and deeper (recursive), after you run

flutter pub run build_runner build|watch [--delete-conflicting-outputs]

plugin will generate mixin near your annotated file-class.

@IntlHelp part: #

From version 1.1.0 this plugin can help you to generate LocalizationDelegates easy as possible from yaml files with your messages. That yaml files must be placed in language code folders, for example: .../ru/intl.yaml .../en/intl.yaml or contain language code delimited by dot with prefix: .../ru.intl.yaml .../en.intl.yaml

For example this two files will produce Delegate: ru:

ok: OK # value
wife:
  - Жён # zero
  - Жена # one
  - Жены # two
#  - Жёны # other
  - Описание поля "Жена" # desc
wife_collision:
  - Жён # zero
  - Жена # one
  - Жены # two
  - Жёны # other
#  - Описание поля "Жена" # desc
husband:
  - мужей # zero
  - муж # one
  - мужа
  - мужа # other
  - Описание поля "Муж" # desc
send:
  - Отправить # value
  - Отправить что-то куда-то # desc
save:
  value: Сохранить
  desc: Сохранение чего-либо где-либо
child:
  zero: Детей
  one: Ребенок
  two: Ребенка
  other: Дети
  desc: Используется для описания количества детей
cow:
  zero: коров
  one: корова
  other: коровы
  desc: Используется для описания количества коров

en:

ok: OK # value
wife:
  - wives # zero
  - wife # one
  - wives # two
#  - wives # other
  - Описание поля "Жена" # desc
wife_collision:
  - wives # zero
  - wife # one
  - wives # two
  - wives # other
#  - Описание поля "Жена" # desc
husband:
  - husbands # zero
  - husband # one
  - husbands # two
  - husbands # other
  - Описание поля "Муж" # desc
send:
  - Send #value
  - Отправить что-то куда-то #desc
save:
  value: Save
  desc: Сохранение чего-либо где-либо
child:
  zero: children
  one: child
  two: children
  other: children
  desc: Используется для описания количества детей
cow:
  zero: cows
  one: cow
  other: cows
  desc: Используется для описания количества коров

Yaml file should contain key-value messages for specific locale. There are formats, which supports by plugin at now: simplest:

key: yourMessage

with desc:

key:
  value: yourMessage
  desc: yourMessageDescription

with pluralization supports:

key:
  zero: yourMessage for 0
  one: yourMessage for 1
  two: yourMessage for 2 <- It's an optional field for that type
  other: yourMessage for other
  desc: yourMessageDescription <- It's an optional field for that type

with desc in array format:

key:
  - yourMessage
  - yourMessageDescription <- It's an optional field for that type

with pluralization in array format:

key:
  - yourMessage for 0
  - yourMessage for 1
  - yourMessage for 2 <- It's an optional field for that type
  - yourMessage for other
  - yourMessageDescription <- It's an optional field for that type

example with missing "two" key and with desc:

key:
  - yourMessage for 0
  - yourMessage for 1
  - yourMessage for other
  - yourMessageDescription <- It's an optional field for that type

example with missing "desc" key and with two:

key:
  - yourMessage for 0
  - yourMessage for 1
  - yourMessage for 2 <- It's an optional field for that type
  - yourMessage for other

example with missing "two" key and missing "desc"

key:
  - yourMessage for 0
  - yourMessage for 1
  - yourMessage for other

Plugin can understand difference between your description and other fields by it's content and choose correct type

After you create your messages yaml files you should place its at asset folder (or other folder, which is marked as "asset" in your pubspec.yaml. Each language yaml must contain a "intl" substring or other, if you want by pass prefix param to @IntlHelp annotation:

@IntlHelp(prefix: 'your_yaml_files_prefix')
class LocalizationDelegate extends _$LocalizationDelegate {}

Then all you need to get your LocalizationDelegate is:

import 'package:assets_annotations/assets_annotations.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';

part 'localization_delegate.g.dart';

@IntlHelp()
class LocalizationDelegate extends _$LocalizationDelegate {}

then run

flutter pub run build_runner build|watch [--delete-conflicting-outputs]

and use generated delegate in your app:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      localizationsDelegates: [
        LocalizationDelegate(),
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
      ],
      supportedLocales: [
        const Locale('en'),
        const Locale('ru'),
      ],
      title: 'Assets demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

...

@override
Widget build(BuildContext context) {
return Scaffold(
  appBar: AppBar(
    title: Text('${Messages.of(context).cow(1)} app'),
  ),
  body: Center(
    child: Column(
      mainAxisAlignment: MainAxisAlignment.center,
      children: <Widget>[
        Text('You have ${Messages.of(context).cow(_counter)}'),
      ],
    ),
  ),
  floatingActionButton: FloatingActionButton(
    onPressed: _incrementCounter,
    tooltip: 'Increment',
    child: Icon(Icons.add),
  ),
);
}

you can ask what is a Messages, well, it's is a generated helper for extract you messages from context, which can be imported from generated file:

class Messages {
  static LocalizationMessages of(BuildContext context) =>
      Localizations.of(context, LocalizationMessages);
}

zero cows one cow two cows

1
likes
0
pub points
0%
popularity

Publisher

verified publisheralphamikle.dev

Code generator for assets plugin. Using this with assets_annotation package and one of @AstHelp, @IntlHelp annotations. More info at README.md

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

analyzer, assets_annotations, build, dart_style, edit_distance, flutter, path, source_gen, yaml

More

Packages that depend on assets_codegen