Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active December 9, 2018 16:16
Show Gist options
  • Save fabiomsr/175431413c8f7a9f6ae10c9208625a01 to your computer and use it in GitHub Desktop.
Save fabiomsr/175431413c8f7a9f6ae10c9208625a01 to your computer and use it in GitHub Desktop.
Flutter DecoratedBox
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