this is my code
ColorFiltered(
colorFilter: const ColorFilter.matrix([
0.0, 0.0, 0.0, 0.0, 0.0, //
2.0, 0.0, 0.0, 0.0, 0.0, //
0.0, 0.0, 3.0, 0.0, 0.0, //
0.0, 0.0, 0.0, 1.0, 0.0, //
]),
child: Image.asset(
"assets/step1.png",
height: 50,
width: 50,
),
),
output is blue
I want this blue
color code #1560BD What is color matrix for this color code ?
I want like this color (expecting color)
CodePudding user response: