How can I tune an image that I added later and as a layer? #256
Unanswered
RahajulAminRaju
asked this question in
Q&A
Replies: 1 comment
-
You can't do that directly. The tune editor will only apply to the background image. If you need this functionality, you can create a custom solution by using the ColorFilterGenerator(
filters: [],
tuneAdjustments: [
TuneAdjustmentMatrix(
id: 'brightness',
matrix: ColorFilterAddons.brightness(0.4),
value: 0.4,
),
],
child: YOUR_WIDGET,
) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
And also after exporting few layers then after import how can I tune each layer image? IF i EXPORT THE IMAGE AS LAYER AND IMPORT IT LATER, HOW CAN i TWINING EACH LAYTER IMAGE AND IMAGE FILTER, BLUR ETC CAN APPLY?
Beta Was this translation helpful? Give feedback.
All reactions