Shawn

Results 192 comments of Shawn

> @esDotDev Could you provide instructions on enabling the Chinese language version? cc @bdero You can switch your test device to Chinese, or just uncomment this line here: https://github.com/gskinnerTeam/flutter-wonderous-app/blob/4f55aa253616944b19941a5b19dbfa45fa2162ed/lib/logic/locale_logic.dart#L18

I can certainly provide a number of use cases, just slammed right now. I'll circle back in a cpl weeks when things calm down a bit. Generally speaking, it's any...

Ya, I think that's kinda the problem this would address. It would give us some middle ground. It also shows the problem with giving examples, because the response will tend...

No worries I get it. Everything is double-edged. Flutter is such an expressive framework though, I always feel it's a shame to be locked too rigidly inside the box (well...

A nice thing about having this Widget is that it will let us put some sort of number to this. Curious if we're talking 10ms, 1ms or .1ms when we...

As an example of why Overlay is just hard to deal with, I had an idea: "What if I can use a LayerLink, but use just the position and size,...

Just to try and gather this all in one place, I believe there's about 158 upvotes on this general issue: There is this one, with 113 votes, which is basically...

Here's a use case to get the ball rolling. This shows 2 issues with flutter layout currently: * Hit areas can not extend outside their parent * The size of...

Something like `IgnoreParentBounds` that respected parent positioning, but did not enforce any bounds on the size of the child, or the hit test bounds of the child would be perfect....

Another example from a realworld use case we've had in the past. A custom auto-complete in 63 lines, using the offset trick + inverting column order: https://user-images.githubusercontent.com/736973/111886459-32c68180-8993-11eb-8149-b68cb9c10f5d.mp4 ``` class SearchResultsSpike...