change_color_profile 0.0.3
change_color_profile: ^0.0.3 copied to clipboard
This is a plugin that changes the color profile of an image
example/lib/main.dart
import 'dart:io';
import 'package:flutter/material.dart';
import 'aos_view.dart';
import 'ios_view.dart';
void main() {
runApp(const PrintApp());
}
class PrintApp extends StatelessWidget {
const PrintApp({super.key});
final title = 'Plugin example';
@override
Widget build(BuildContext context) {
return Platform.isAndroid ? PrintAppForAOS(title) : PrintAppForiOS(title);
}
}