Skip to content

Instantly share code, notes, and snippets.

@av
Last active January 13, 2020 15:37
Show Gist options
  • Save av/7f19db30d84bc4f62d953a403cf38410 to your computer and use it in GitHub Desktop.
Save av/7f19db30d84bc4f62d953a403cf38410 to your computer and use it in GitHub Desktop.
Flutter: neu
class NeumorphicContainer extends StatelessWidget {
final Widget child;
NeumorphicContainer({Key key, this.child}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
child: child,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment