Skip to content

Instantly share code, notes, and snippets.

@enmanuel97
Created July 20, 2021 19:46
Show Gist options
  • Save enmanuel97/9232086960bd34d7de6f68c412ea70c7 to your computer and use it in GitHub Desktop.
Save enmanuel97/9232086960bd34d7de6f68c412ea70c7 to your computer and use it in GitHub Desktop.
String to Color - Flutter
Color colorFromHex(String hexColor) {
String hexCode = hexColor.replaceAll('#', '');
return Color(int.parse('FF$hexCode', radix: 16));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment