Dan Hill
Dan Hill
We have an interceptor that catches the issue and deletes the cache entry. It's not pretty, but maybe it'll help y'all as well: https://gist.github.com/danh32/d91f938dc223bd11da2f3310b3767020
Oh wow, haha! What cornerRadius did you set? I have: ``` ``` and am seeing:  Interestingly, we're already manually enclosing the path...
Similarly to https://github.com/robinhood/spark/pull/54, I think this is a bit too specific for Spark 1.0. I also agree with @naturalwarren on the public boolean needing a bit of polish.
I'm not sure exactly what you mean, but you should be able to use a `ScrubListener` to build whatever UI you want around or even ontop of the SparkView.
I won't have time to get to this anytime soon, unfortunately. But PRs are welcome!
My super-rough idea so far is to have a class something like: ``` interface SparkDraw { void draw(Canvas c, DrawArgs args); } class DrawArgs { public Path sparkPath; public Path...
Sorry for the delay here! I'm not sure what shadow you mean. Can you elaborate?
Hey @EnricoMonese, so sorry for sitting on this for so long! This is a really beautiful effect. The bad news is, I think it's a little specific to merge into...
Ok, cool! Really appreciate you sharing these effects! I'm gonna leave these open for now, and will hopefully have a place for these to go in Spark 2.0.
If anyone else is hitting this, our workaround is: ``` whorlwind.read() .retry((count, throwable) -> count < 4 && throwable instanceof IllegalStateException) ... .subscribe(...) ```