Last active
January 13, 2020 15:37
-
-
Save av/7f19db30d84bc4f62d953a403cf38410 to your computer and use it in GitHub Desktop.
Flutter: neu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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