https://github.com/xclud/dart_zebra
Zebra is a barcode reader library for Flutter and Dart
https://github.com/xclud/dart_zebra
Last synced: 11 months ago
JSON representation
Zebra is a barcode reader library for Flutter and Dart
- Host: GitHub
- URL: https://github.com/xclud/dart_zebra
- Owner: xclud
- License: mit
- Created: 2020-10-15T12:50:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-15T19:19:59.000Z (almost 6 years ago)
- Last Synced: 2025-04-25T12:54:40.923Z (about 1 year ago)
- Language: Dart
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# zebra
Zebra is a barcode reader/scanner library for Flutter and Dart.
## Attention
> This is a WIP package and it does not implement any of the features
> listed.
## Supported platforms
* [x] Flutter Android
* [x] Flutter iOS
* [x] Flutter Web
* [x] Flutter Desktop
## What is Zebra
Zebra is a barcode-scanner entirely written in Dart supporting real-time localization and decoding of various types of barcodes such as **EAN**, **CODE 128**, **CODE 39**, **EAN 8**, **UPC-A**, **UPC-C**, **I2of5**, **2of5**, **CODE 93** and **CODABAR**. The library is also capable of using flutter's `camera`plugin to get direct access to the user’s camera stream. Although the code relies on heavy image-processing even recent smartphones are capable of locating and decoding barcodes in real-time.
## Getting Started
In your `pubspec.yaml` file add:
```dart
dependencies:
zebra: any
```
Then, in your code import:
```dart
import 'package:zebra/zebra.dart';
```