dj 0.0.15 copy "dj: ^0.0.15" to clipboard
dj: ^0.0.15 copied to clipboard

discontinued
outdated

Auto-Generate Dart and Flutter Code while retaining manual user updates to generated code.

dj #

Auto-Generate Dart and Flutter Code while retaining manual user updates to generated code.

Usage #

A simple usage example:

import 'package:dj/dj.dart';

void main() {
  var outputDir = '..\\lib';

  var baseDj = BaseDj(
    path: outputDir,
    node: DirectoryDj(
      name: 'dj_generated',
      nodes: [
        FileDj(
          name: 'hello_world',
          codeParts: [
            // This import is really not needed in generated file
            // Adding this line for demonstration only!
            ImportDj(importStr: 'package:io/io.dart'),
            FunctionDj(
              description: 'Main entry point to this file!',
              outputType: VariableType.Void,
              name: 'main',
              bodyCodeParts: [
                FunctionCallDj(
                  name: 'print',
                  args: ["'Hellow World!'"],
                ),
              ],
            ),
          ],
        ),
      ],
    ),
  );

  // Generating Json for Auto-Generated code
  var baseDjMap = baseDj.toJson();

  print('Auto-Generated Code:');
  print(baseDjMap);
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

4
likes
110
pub points
0%
popularity

Publisher

verified publisherprod.pk

Auto-Generate Dart and Flutter Code while retaining manual user updates to generated code.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

args, dart_style, json_annotation, path, recase, universal_io

More

Packages that depend on dj