Rody Davis

Results 417 comments of Rody Davis

Still looking into the best way to solve for keeping the instances stable on hot reload. Currently the create callback is treaded like a computed signal so it would get...

Thanks for the find! Can you open a PR with the change? That definitely needs to be passed along to sub signals.

Fixed but to make it backwards compatible, you can pass null to inherit the current signal autoDispose flag: ```dart final s1 = signal(a, autoDispose: true); final s2 = s1.select((e) =...

**fromLabel** and **toLabel** is exactly what I need too: https://github.com/obsidianmd/jsoncanvas/issues/2

I am traveling in Guatemala (usually in San Francisco) and the site is not loading for me.

This should be equivalent! Not sure why one is working and the other is not. Do you have a complete example to test with?

That is because .of(context) is inside a builder context for the list view and not a Watch.builder. The signal would not be updated because it is only reading the value...

This is expected and why .watch has to be called in the scope of the nearest builder element. One of the reasons I didn't do a custom element was because...