Skip to content

Instantly share code, notes, and snippets.

@rodrigozrusso
Created June 27, 2020 20:56
Show Gist options
  • Save rodrigozrusso/0119e0b9aaf1164492993e4cc40ae6ed to your computer and use it in GitHub Desktop.
Save rodrigozrusso/0119e0b9aaf1164492993e4cc40ae6ed to your computer and use it in GitHub Desktop.
flutter_decoration_gradient
Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topRight,
end: Alignment.bottomLeft,
colors: [
Colors.amber,
Colors.brown
]
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment