Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/i10416/flutter_barcode
- Owner: i10416
- License: mit
- Created: 2021-02-15T18:14:07.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T13:18:00.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T09:25:42.250Z (4 months ago)
- Topics: flutter, ui
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_barcode
- Size: 46.9 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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')
]
);
```
![]()