pdf_kit_editor 0.1.0 copy "pdf_kit_editor: ^0.1.0" to clipboard
pdf_kit_editor: ^0.1.0 copied to clipboard

A powerful visual PDF template builder for Flutter. Create receipts, documents, and reports with a drag-and-drop-like experience, supporting custom layouts, Google Fonts, and dynamic data.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/editor_screen.dart';

/// Entry point for the PDF Kit Example application.
void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

/// The main application widget.
///
/// It sets up the theme and initial route for the PDF editor.
class MyApp extends StatelessWidget {
  /// Creates a [MyApp] instance.
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'PDF Kit Example',
      theme: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true),
      home: const EditorScreen(),
      debugShowCheckedModeBanner: false,
    );
  }
}
3
likes
0
points
86
downloads

Publisher

unverified uploader

Weekly Downloads

A powerful visual PDF template builder for Flutter. Create receipts, documents, and reports with a drag-and-drop-like experience, supporting custom layouts, Google Fonts, and dynamic data.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, freezed_annotation, http, json_annotation, pdf, printing, shared_preferences

More

Packages that depend on pdf_kit_editor