adsonpleal

Results 41 comments of adsonpleal

Perfect, I'll start working on it then! I'll let you know when I have something to show.

hey @rrousselGit! I have a working POC here. https://user-images.githubusercontent.com/11666470/174619354-bf21d513-4957-4ca5-b293-9684b82830d5.mp4 Just want to align the UI for this first part. I basically used the same components from Provider's implementation. The only...

Perfect! Maybe for the error/state we could show the `Result` directly. The only change would be one more level on the preview panel. https://user-images.githubusercontent.com/11666470/174632911-555954d5-f625-44b7-af4c-2391298aa247.mp4 I just need to figure out...

About the provider name, what do you think of doing something like this? The logic is basically: ```dart final typeString = '${node.type}()'; final title = node.name != null ? '${node.name}...

Hey @rrousselGit, I'm wondering if this will be an issue: > getState can be out of date, such as if a provider isn't listened but one of its dependencies has...

Perfect, I was trying to avoid changing the binding class, so we wouldn't need to have a min version for dev-tools to work. But I think it is better to...

Perfect! Will do that.

I'm trying to find the best place to put the refresh debug event. I found that `ProviderBase` has a [_onListen](https://github.com/rrousselGit/riverpod/blob/master/packages/riverpod/lib/src/framework/provider_base.dart#L887) and a [_onRemoveListener](https://github.com/rrousselGit/riverpod/blob/master/packages/riverpod/lib/src/framework/provider_base.dart#L894) methods. What do you think of putting...

Like when a provider has no listeners and its value might be outdated.

So we can show this info to the user, so they can be aware that the value might not be what is being shown. And have a button so they...