I tried to add color using ColorFiltered widget to half of image (50% size of image) but I couldn't give value in flutter when I give value then show me error.How I give size or value?
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/bar.png",
),
),