flutter_image_conversion 2.1.2
flutter_image_conversion: ^2.1.2 copied to clipboard
A lightweight Flutter plugin that enables conversion of HEIC images to JPEG format on iOS, macOS, and Web. Supports Windows and Android with graceful fallback. Ideal for apps targeting image uploads, [...]
import 'package:flutter/material.dart';
import 'package:flutter_image_conversion_example/home_screen.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: HomeScreen());
}
}