quill_pdf_editor 3.0.1 copy "quill_pdf_editor: ^3.0.1" to clipboard
quill_pdf_editor: ^3.0.1 copied to clipboard

A Flutter package that edits Quill content and exports it as PDF.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:quill_pdf_editor/quill_pdf_editor.dart';

void main() {
  runApp(const ExampleApp());
}

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(title: const Text('Quill PDF Editor Example')),
        body: QuillPdfEditor(
          config: QuillPdfEditorConfig(
            enablePdfExport: true,
            enablePdfPreview: true,
            showToolbar: true,
            showTitleField: true,
          ),
        ),
      ),
    );
  }
}
5
likes
160
points
148
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that edits Quill content and exports it as PDF.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_quill, flutter_quill_extensions, open_filex, path_provider, pdf, printing

More

Packages that depend on quill_pdf_editor