Changing Background Color Of Image in Flutter

前端 未结 5 2167
陌清茗
陌清茗 2021-01-15 03:10

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.

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-15 03:46

    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/

提交回复
热议问题