Last active
December 9, 2018 16:16
-
-
Save fabiomsr/175431413c8f7a9f6ae10c9208625a01 to your computer and use it in GitHub Desktop.
Flutter DecoratedBox
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
DecoratedBox( | |
decoration: BoxDecoration( | |
gradient: LinearGradient( | |
begin: const FractionalOffset(0.5, 0.6), | |
end: const FractionalOffset(0.5, 1.0), | |
colors: <Color>[const Color(0x00000000), const Color(0x70000000)] | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment