pdfrx 2.2.9 copy "pdfrx: ^2.2.9" to clipboard
pdfrx: ^2.2.9 copied to clipboard

Platformweb

pdfrx is a rich and fast PDF viewer and manipulation plugin built on the top of PDFium. Supports viewing, editing, combining PDFs on Android, iOS, Windows, macOS, Linux, and Web.

example/README.md

Minimum Example #

The following code is a minimum example usage of pdfrx:

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Pdfrx example',
      home: MainPage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Pdfrx example'),
      ),
      body: PdfViewer.uri(
        Uri.parse('https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf'),
      ),
    );
  }
}

For more advanced usage, see [[viewer/lib/main.dart]].

270
likes
140
points
219k
downloads
screenshot

Publisher

verified publisherespresso3389.jp

Weekly Downloads

pdfrx is a rich and fast PDF viewer and manipulation plugin built on the top of PDFium. Supports viewing, editing, combining PDFs on Android, iOS, Windows, macOS, Linux, and Web.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, crypto, dart_pubspec_licenses, ffi, flutter, http, path, path_provider, pdfium_flutter, pdfrx_engine, rxdart, synchronized, url_launcher, vector_math, web

More

Packages that depend on pdfrx

Packages that implement pdfrx