Shawn

Results 192 comments of Shawn

Ah, thanks Joel, we are just starting to dig in. I didn't realize we could just operate in legacy mode. That works!

I'm not sure this is the correct way to implement this, wrapping each `IgnorePointer` w/ `ExcludeSemantics(excluding: false, ...)` seems pointless, am I missing something? Have you tested with a screen...

@jaredbell Considering we've fixed #147 which turns scrollbars on permanently for web/desktop, do you think this still needs additional scrollwheel support?

Ya I've seen this too, was going to maybe bug Jonah about it. We allowed the images to get very large so they would feel better on tablet, but it...

Should be possible! tbh that was my first package and I haven't looked at it in a long time! Happy to take a PR on it if you figure out...

Sure, thanks for the suggestion. If you have any code that shows it simply reproduced that could help when I find time to look at it. As simple as just...

I think what might work nicely is using the Visibility widget, and just set one of the children to offscreen.

Hm, couldn't you just use a stack?: ``` Stack(children: [ Visibility(visible: showChild1, maintainState: true, child: child1), Visibility(visible: !showChild1, maintainState: true, child: child2), ]) ```

I see, ya I guess that's pretty much what IndexedStack is huh?? lol

I think this is because the padding is tightly wrapping your content, giving you only 16px of more area to detect hits. Try swapping the `Padding` and the `DeferredPointerHandler`? Or...