mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Flutter 3.29 beta (#2571)
This commit is contained in:
@@ -11,9 +11,10 @@ int main(List<String> arguments) {
|
||||
// the `--input` option and one for the `--output` option.
|
||||
// `--input` is the original asset file that this program should transform.
|
||||
// `--output` is where flutter expects the transformation output to be written to.
|
||||
final parser = ArgParser()
|
||||
..addOption(inputOptionName, mandatory: true, abbr: 'i')
|
||||
..addOption(outputOptionName, mandatory: true, abbr: 'o');
|
||||
final parser =
|
||||
ArgParser()
|
||||
..addOption(inputOptionName, mandatory: true, abbr: 'i')
|
||||
..addOption(outputOptionName, mandatory: true, abbr: 'o');
|
||||
|
||||
ArgResults argResults = parser.parse(arguments);
|
||||
final String inputFilePath = argResults[inputOptionName];
|
||||
@@ -29,8 +30,10 @@ int main(List<String> arguments) {
|
||||
// The flutter command line tool will see a non-zero exit code (1 in this case)
|
||||
// and fail the build. Anything written to stderr by the asset transformer
|
||||
// will be surfaced by flutter.
|
||||
stderr.writeln('Unexpected exception when producing grayscale image.\n'
|
||||
'Details: $e');
|
||||
stderr.writeln(
|
||||
'Unexpected exception when producing grayscale image.\n'
|
||||
'Details: $e',
|
||||
);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user