fcnui 1.0.3 copy "fcnui: ^1.0.3" to clipboard
fcnui: ^1.0.3 copied to clipboard

The fcnui CLI (Command-Line Interface) tool. It is used to generate component code for the fcnui package.

example/lib/main.dart

// ignore_for_file: avoid_print

import 'dart:io';

Future<ProcessResult> run(List<String> args) async {
  final process = await Process.run('fcnui', args);
  print(process.stdout.toString());
  return process;
}

void main() {
  //ivalid command
  // invalidCommand();

  //init
  // initialize();

  //add button
  addButton();
}

void invalidCommand() {
  run([]);
}

void initialize() {
  run(['init']);
}

void addButton() {
  run(['add', 'button']);
}
5
likes
0
pub points
1%
popularity

Publisher

verified publishershoh.dev

The fcnui CLI (Command-Line Interface) tool. It is used to generate component code for the fcnui package.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

dio, equatable, fpdart, get_it, yaml_edit

More

Packages that depend on fcnui