flutter_image_conversion 1.0.0
flutter_image_conversion: ^1.0.0 copied to clipboard
A lightweight Flutter plugin that enables conversion of HEIC images to JPEG or PNG format directly on iOS devices. Ideal for apps targeting image uploads, social sharing, or cross-platform compatibility.
import 'package:flutter/material.dart';
import 'package:flutter_image_conversion_example/gallery.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(home: Gallery());
}
}