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

A Flutter package for scanning and extracting structured data from supermarket receipts using Google's ML Kit.

example/lib/main.dart

import 'package:example/views/receipt_recognition_view.dart';
import 'package:flutter/material.dart';

/// Entry point of the Receipt Recognition example app.
void main() {
  runApp(const ExampleApp());
}

/// The root widget of the Receipt Recognition example application.
///
/// Sets up a basic [MaterialApp] with theming and launches the
/// [ReceiptRecognitionView] as the home screen.
class ExampleApp extends StatelessWidget {
  /// Creates an instance of [ExampleApp].
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Receipt Recognition',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.lightGreen),
      ),
      home: const ReceiptRecognitionView(),
    );
  }
}
1
likes
160
points
269
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for scanning and extracting structured data from supermarket receipts using Google's ML Kit.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, fuzzywuzzy, google_mlkit_text_recognition, intl

More

Packages that depend on receipt_recognition