Skip to content

Instantly share code, notes, and snippets.

@TheNova22
Created October 6, 2020 13:07
Show Gist options
  • Save TheNova22/90d9f7c0893246ac4e3eb15fd0202fec to your computer and use it in GitHub Desktop.
Save TheNova22/90d9f7c0893246ac4e3eb15fd0202fec to your computer and use it in GitHub Desktop.
Hex Value To Color
// vim: syntax=dart
Color hexToColor(String code) {
return new Color(int.parse(code.substring(1, 7), radix: 16) + 0xFF000000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment