-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hexView crashes if startAddress is 0 + a few requests #1
Comments
Wait, in fact, I don't want a "startAddress" at 5 but from 0, but it crash if I do so... So I think the problem is that the lib doesn't support 0 as a startaddress or am I missing something ? the error if I use a ZERO as startAddress, from the example : EDIT : I also fixed this in my version, you simply need to add an else case in the suffix and prefix functions, and cast data to List ( data.toList() ) before return... |
Can you send a pull request? |
please create a seperate issue for hexdump viewer |
Well I fixed it so my intention was to PR and to close this issue ... Done anyway ! PR done btw ... have a nice day ! |
Hi and thank you for this great package !
I had a small trouble to use hexView from a Uint8List and had to cast it to a List explicitelly... weird...
hexView(5, new List.from(data));
But anyway it works as intended !
I would like to know if you planned to include an ASCII representation like in wireshark or hexdump ??
image example
EDIT: nevermind my request, I ended up editing your package myself... Do you accept PRs ?
The text was updated successfully, but these errors were encountered: