Is there a way to tint a `Painter` using a `Brush`...
# compose
e
Is there a way to tint a
Painter
using a
Brush
(eg gradients and other shaders)? I am thinking to use
drawWithContent
but the issue is that I have this chain:
Copy code
Modifier
  .drawWithContent(...) // <- I want to tint/blend *only* the painter but this will tint/blend everything underneath
  .paint(painter, ...)
  .otherContentOrOverlay()
  .(...)