pdf_combiner 2.0.0 pdf_combiner: ^2.0.0 copied to clipboard
It is a lightweight and efficient Flutter plugin designed to merge multiple PDF documents into a single file effortlessly.
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(),
);
}
}