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

Generate customizable invoice, bill, and receipt PDFs in Flutter with multiple templates, JSON-driven layouts, GST support, QR codes, and cross-platform export.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/showcase_screen.dart';

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

class InvoiceKitExampleApp extends StatelessWidget {
  const InvoiceKitExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Invoice Kit Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFF1565C0),
          brightness: Brightness.light,
        ),
        useMaterial3: true,
      ),
      home: const ShowcaseScreen(),
    );
  }
}
0
likes
130
points
88
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Generate customizable invoice, bill, and receipt PDFs in Flutter with multiple templates, JSON-driven layouts, GST support, QR codes, and cross-platform export.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

barcode_widget, flutter, intl, path_provider, pdf, printing

More

Packages that depend on invoice_kit