pdf_combiner 1.0.0
pdf_combiner: ^1.0.0 copied to clipboard
is a lightweight and efficient Flutter plugin designed to merge multiple PDF documents into a single file effortlessly.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:pdf_combiner_example/views/pdf_combiner_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'PDF Combiner Example',
home: PdfCombinerScreen(),
);
}
}