hexview 0.0.2 copy "hexview: ^0.0.2" to clipboard
hexview: ^0.0.2 copied to clipboard

outdatedDart 1 only

Pretty print byte array as hexadecimal view

example/hexview_example.dart

import 'dart:typed_data';
import 'package:hexview/hexview.dart';

main() {
	final nums = new List<int>.generate(125, (i) => i + 5);
	final data = new Uint8List.fromList(nums);
	final view = new HexView16(5, data);
	print(view.numRecords);

	print(view);
}
0
likes
0
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

Pretty print byte array as hexadecimal view

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on hexview