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

A CLI tool that checks each image in the project and report missing files or incorrect image resolution.

example/images_files_checker_example.dart

import 'dart:io';

/// This package is intended to be used on CLI. Ex:
/// flutter pub run images_files_checker --path assets/images --unexpected-dir-is-an-error

void main() async {
  final result = await Process.run("dart", [
    "bin/images_files_checker.dart",
    "--path",
    "./example/images",
    "--resolutions",
    " 1.0x,1.5x",
  ]);
  print(result.stdout);
}
13
likes
0
pub points
19%
popularity

Publisher

unverified uploader

A CLI tool that checks each image in the project and report missing files or incorrect image resolution.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, image

More

Packages that depend on images_files_checker