Skip to content

Instantly share code, notes, and snippets.

@av
Created January 13, 2020 16:01
Show Gist options
  • Save av/839dd170551660c2e73a9353f58ec321 to your computer and use it in GitHub Desktop.
Save av/839dd170551660c2e73a9353f58ec321 to your computer and use it in GitHub Desktop.
Flutter: neu
extension ColorUtils on Color {
Color mix(Color another, double amount) {
return Color.lerp(this, another, amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment