-1

I want a greenish tint over the non transparent part of the image, a tried searching for an image manipulation library so that i can manipulate the image directly but couldn't find

1 Answers1

0

Use a container for the image

Container(
            decoration: new BoxDecoration(
              color: const Color(0xff7c94b6),
              image: new DecorationImage(
                fit: BoxFit.cover,
                colorFilter: new ColorFilter.mode(Colors.green.withOpacity(0.2)),
                image: new NetworkImage(
                  'Imgurl',
                ),
              ),
            ),
          ),
Aderoju Israel
  • 154
  • 1
  • 11