Implements Blend Mode, adds a tint property to VectorView to support this.
I did it as a tuple because it's easier to use in that format, but it's possible a struct would be better, since that lets us provide some default values for common uses cases.
I also chose not to respect the iOS tint color, even though it's technically more appropriate, to maintain parity with Android.
Implements Blend Mode, adds a
tint
property toVectorView
to support this.I did it as a tuple because it's easier to use in that format, but it's possible a struct would be better, since that lets us provide some default values for common uses cases.
I also chose not to respect the iOS tint color, even though it's technically more appropriate, to maintain parity with Android.
Closes #12.