Created
June 26, 2018 04:42
-
-
Save hnvn/0e6b85bd9d2661c1dbde869608a233b2 to your computer and use it in GitHub Desktop.
This file contains 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
@override | |
Widget build(BuildContext context) { | |
return Column( | |
mainAxisSize: MainAxisSize.min, | |
children: [ | |
Transform( | |
transform: Matrix4.rotationX(pi / 4), | |
alignment: Alignment.bottomCenter, | |
child: ClipRect( | |
child: Align( | |
alignment: Alignment.topCenter, | |
heightFactor: 0.5, | |
child: child, | |
)), | |
), | |
... | |
], | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment