SvenTiigi / WhatsNewKit

Showcase your awesome new app features 📱
https://sventiigi.github.io/WhatsNewKit/
MIT License
3.92k stars 193 forks source link

Disable tint for item images #31

Closed ammerzon closed 4 years ago

ammerzon commented 4 years ago

WhatsNewKit Environment

What did you do?

I created a new WhatsNewController and inserted three items with an image.

What did you expect to happen?

The actual assets are displayed without the tint color.

What happened instead?

The images are all tinted. Is it possible to disable this behaviour?

Screenshot 2019-11-13 at 10 59 13
SvenTiigi commented 4 years ago

Hey @ammerzon,

In default the autoTintImage of the ItemsView configuration is set to true.

You can disable it by simply setting autoTintImage to false.

configuration.itemsView.autoTintImage = false
ammerzon commented 4 years ago

Thx for your quick answer. Now it works.