flutter_pdf_kit 0.0.2+alpha copy "flutter_pdf_kit: ^0.0.2+alpha" to clipboard
flutter_pdf_kit: ^0.0.2+alpha copied to clipboard

PlatformiOSmacOS

Widgets and useful tools based on native PDFKit on iOS and macOS

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:flutter_pdf_kit/flutter_pdf_kit.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('Plugin example app'),
          ),
          body: const CupertinoPdfView.asset('assets/dummy.pdf')),
    );
  }
}
0
likes
160
pub points
49%
popularity

Publisher

unverified uploader

Widgets and useful tools based on native PDFKit on iOS and macOS

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_pdf_kit