Can we Change the background color on an Image in Flutter? Like in this Image I want to change the pink color background color to something else.
I know that's an old question, but for those that came from google.
It's now possible, since flutter 1.9, using the widget ColorFiltered.
body: Center(
child: ColorFiltered(
child:Image.network(
"https://cdn.pixabay.com/photo/2019/12/14/07/21/mountain-4694346_960_720.png",
),
colorFilter: ColorFilter.mode(Colors.red, BlendMode.color),
),
Full example, By Rashid: https://flutterforyou.com/how-to-change-color-of-an-image-in-flutter/