Frank Pepermans

Results 35 comments of Frank Pepermans

I was able to resolve it :) It is not a stagexl issue directly, I am using StageRenderMode.ONCE, and I assume that you recalculate hit areas only upon materializing, because...

Sorry I had only checked with RenderMode.Canvas2D, when I switch to WebGL, it still behaves funny

Sure thing sorry :) https://github.com/frankpepermans/flow Also having dart2js issues here, but that could be non stagexl stuff

Hey guys, Wouldn't mind helping out if still needed, gladly accept PRs for fast_noise.

I think you just need to close that BehaviorSubject

Regarding nulls, we will have non-nullable types in Dart eventually, On the errors, if the last event was an error, then having no value seems logic (to me), but maybe...

Heya, Thanks for submitting a PR! However, I think it's best if we try to keep the amount of operators to a minimum, `distinctBy(method)` is only a shorthand to `distinct((a,...

Remember, rxdart is built on top of Dart Streams. In Dart Streams, there's distinct. But with different behavior to Rx in general, where we have distinct and distinctUntilChanged. So, since...

Which version of rxdart are you using?

DistinctUnique uses a HashSet underneath, alpha and gamma aren't the same hashCode, so you'd need to provide a different hashing method, next to the equals handler. For example (e) =>...