Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/i10416/flutter_barcode

A custom widget which generates and displays a barcode. Currently supporting JAN and NW7.
https://github.com/i10416/flutter_barcode

flutter ui

Last synced: 3 months ago
JSON representation

A custom widget which generates and displays a barcode. Currently supporting JAN and NW7.

Awesome Lists containing this project

README

        

# flutter_barcode

A custom widget which generates and displays a barcode.

## Support

- JAN
- NW7

## install

```yaml:pubspec.yaml
dependencies:
flutter_barcode:
git: [email protected]:ItoYo16u/flutter_barcode.git

```

## Example

```dart

Column(
children:[
BarcodePaint(
Barcode.jan('4011200296908'), // or Barcode.nw7("<...>")
size: Size(100,50),
),
Container(
align:Alignment.center,
padding: EdgeInsets.all(8),
child: Text('4011200296908')
]
);
```

flutter barcode sample