Last active
May 25, 2022 14:45
-
-
Save maodo/f93fb5f27900831d397326d9110854bc to your computer and use it in GitHub Desktop.
Set an image as background with transparency
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
| Container( | |
| decoration: BoxDecoration( | |
| image: DecorationImage( | |
| image: AssetImage('images/image_name_with_the_extension'), | |
| fit: BoxFit.cover, | |
| colorFilter: ColorFilter.mode( | |
| Colors.white.withOpacity(0.8), BlendMode.dstATop), | |
| ), | |
| ), | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment