syncfusion_pdfviewer_platform_interface 27.2.2 copy "syncfusion_pdfviewer_platform_interface: ^27.2.2" to clipboard
syncfusion_pdfviewer_platform_interface: ^27.2.2 copied to clipboard

A common platform interface for the Flutter PDF Viewer library that lets you view the PDF documents seamlessly and efficiently.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(
    title: 'Syncfusion PDF Viewer Demo for Web',
    theme: ThemeData(
      useMaterial3: false,
    ),
    home: const HomePage(),
  ));
}

/// Represents Homepage for Navigation
class HomePage extends StatefulWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  _HomePage createState() => _HomePage();
}

class _HomePage extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Syncfusion Flutter PDF Viewer'),
      ),
      body: const Text('PDF Viewer'),
    );
  }
}
2
likes
150
pub points
87%
popularity

Publisher

verified publishersyncfusion.com

A common platform interface for the Flutter PDF Viewer library that lets you view the PDF documents seamlessly and efficiently.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on syncfusion_pdfviewer_platform_interface