pdf_kit_editor 0.1.0
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,
);
}
}