Skip to content

Instantly share code, notes, and snippets.

@maodo
Last active May 25, 2022 14:45
Show Gist options
  • Select an option

  • Save maodo/f93fb5f27900831d397326d9110854bc to your computer and use it in GitHub Desktop.

Select an option

Save maodo/f93fb5f27900831d397326d9110854bc to your computer and use it in GitHub Desktop.
Set an image as background with transparency
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