Open xloc opened 2 years ago
What is the specific problem? Can you describe it in detail?
Yes. If you see the example above, I was attempting to use an svg as the background, and I wanted to recolor the strokes to a mild color Colors.black12
. I tried to use the color attribute of Svg
to recolor the image, but that didn't work. The strokes are still in black. My expectation is the below one where the grid lines are colored in light gray.
Can u provide the source code of grid.svg
Sure. Here it is
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32"
fill="none" stroke="#000000" stroke-opacity="0.04">
<path d="M0 .5H31.5V32" />
</svg>
I had a problem when using the
color
property to re-color the image and found changing the blend mode fromsrcATop
tosrcIn
fix the problem for me. Is this a bug?if use
color
if change it to
srcIn