Skip to content

Instantly share code, notes, and snippets.

@av
Created January 13, 2020 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save av/5c0ba329f842abf94ef8319b85b62ff6 to your computer and use it in GitHub Desktop.
Save av/5c0ba329f842abf94ef8319b85b62ff6 to your computer and use it in GitHub Desktop.
Flutter: neu
// In _NeumorphicContainerState.build > Listener > Container > BoxDecoration
// ...
colors: [
_isPressed ? color : color.mix(Colors.black, .1),
_isPressed ? color.mix(Colors.black, .05) : color,
_isPressed ? color.mix(Colors.black, .05) : color,
color.mix(Colors.white, _isPressed ? .2 : .5),
],
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment