convert_hex 0.1.7
Installing #
dependencies:
convert_hex: ^0.1.7
Example #
import 'package:convert_hex/convert_hex.dart';
void main() {
Hex.decode("2BB9"); //11193
Hex.decode("1aef2"); //110322
Hex.encode(2019); //7E3
Hex.encode(78895); //1342F
//charDecode => String a-f,A-F
Hex.charDecode("f"); //15
Hex.charDecode("A"); //10
Hex.charDecode("2"); //2
Hex.charDecode("h"); //null
//charEncode => int 10-15
Hex.charEncode(10); //A
Hex.charEncode(3); //3
Hex.charEncode(-1); //null
Hex.charEncode(16); //null
Hex.charEncode(50); //null
//how to use class Hex64
Hex64.decode('Ba'); //90
var convert = Hex64.encode(90,2);//StatusEncode
convert.isSucceed;//true
convert.value;//Ba
convert = Hex64.encode(90,1);//StatusEncode
convert.isSucceed;//false
convert.value;//Ba
convert = Hex64.encode(90,5);//StatusEncode
convert.isSucceed;//true
convert.value;//AAABa
}
[0.1.7] - Fix Base 16
- Fix function Hex charDecode and charEncode
[0.1.6] - Fix Base 64
- Edit how to use hex64
- Add return StatusEncode in encode Hex64
[0.1.5] - Add Base
- Add Convert Hex64
[0.1.0] - Base Hex
- Convert Hex
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
convert_hex: ^0.1.7
2. Install it
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:convert_hex/convert_hex.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
67
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
74
|
Overall:
Weighted score of the above.
[more]
|
78
|
We analyzed this package on Dec 11, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.6.1
- pana: 0.13.1+4
- Flutter: 1.12.13+hotfix.2
Health suggestions
Format lib/convert_hex.dart
.
Run flutter format
to format lib/convert_hex.dart
.
Maintenance suggestions
The package description is too short. (-16 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Maintain an example. (-10 points)
Create a short demo in the example/
directory to show how to use this package.
Common filename patterns include main.dart
, example.dart
, and convert_hex.dart
. Packages with multiple examples should provide example/README.md
.
For more information see the pub package layout conventions.
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.68.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.11 | 1.14.12 | |
meta | 1.1.8 | ||
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 | ||
Dev dependencies | |||
flutter_test |