pdfrx_aurora
The Aurora implementation of pdfrx.
Is a rich and fast PDF viewer implementation built on the top of PDFium.
Usage
Add the plugin as a dependency and use it for the Aurora OS platform.
pubspec.yaml
dependencies:
pdfrx_aurora:
git:
url: https://developer.auroraos.ru/git/flutter/flutter-community-plugins/pdfrx_aurora.git
ref: aurora-0.0.1
*.spec
%global __requires_exclude ^lib(pdfium)\\.so.*$
BuildRequires: pkgconfig(runtime-manager-qt5)
*.dart
import 'package:pdfrx/pdfrx.dart';
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Pdfrx'),
),
body: PdfViewer.asset('assets/demo.pdf')
),
);
}