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

outdated

Pretty print byte array as hexadecimal view

example/hexview_example.dart

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

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

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

Publisher

unverified uploader

Weekly Downloads

Pretty print byte array as hexadecimal view

License

BSD-3-Clause (license)

More

Packages that depend on hexview