https://github.com/xclud/dart_base83
Blurhash & Base83 encoding and decoding for dart using dart:convert interface.
https://github.com/xclud/dart_base83
base83 blurhash dart flutter
Last synced: 5 months ago
JSON representation
Blurhash & Base83 encoding and decoding for dart using dart:convert interface.
- Host: GitHub
- URL: https://github.com/xclud/dart_base83
- Owner: xclud
- License: mit
- Created: 2022-12-09T06:01:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-24T13:27:43.000Z (almost 3 years ago)
- Last Synced: 2025-04-25T12:54:40.121Z (8 months ago)
- Topics: base83, blurhash, dart, flutter
- Language: Dart
- Homepage: https://pub.dev/packages/base83
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dartlang.org/packages/base83)
Blurhash & Base83 encoding and decoding for dart using dart:convert interface.
## Web Demo
[Web Demo](https://blurhash.pwa.ir)
## Getting Started
In your `pubspec.yaml` file add:
```dart
dependencies:
base83: any
```
Then, in your code import and use the package:
```dart
import 'package:base83/base83.dart';
final number = base83Decode('00DD');
print(number); // 1092
```