Skip to content

Instantly share code, notes, and snippets.

@av
Last active January 13, 2020 15:04
Show Gist options
  • Save av/33d17a9d45cc397d11759e33e2ab4d64 to your computer and use it in GitHub Desktop.
Save av/33d17a9d45cc397d11759e33e2ab4d64 to your computer and use it in GitHub Desktop.
Flutter: neu
// In NeumorphicContainer
// ...
// New property
final double bevel;
// Also adding initializer to a constructor
const NeumorphicContainer({
Key key,
this.child,
this.bevel = 2.0,
}) : super(key: key);
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment