Shawn
Shawn
Another really nice addition, which would remove the cludge around column direction, would be an OverlayedWidget: ``` return OverlayedWidget(child: _SearchResults(query: value)); // gets sorted above all Widgets, but underneath Overlay...
Here is another example. A figma style selection box in 85 lines. Broken because 3/4s of each resize handle, falls outside the parent bounds: https://user-images.githubusercontent.com/736973/111890710-bf803800-89b1-11eb-8db0-b1a0d4a10d68.mp4 This shows how we can...
That Flow widget looks really cool, 18mths with Flutter and this is the first I've ever heard of it. 1. From my experience what most devs find intuitive, is "if...
> You might have accidentally skipped the third paragraph of Hixies issue description: Ah, I did miss that point. Well we would need to quantify this before we can have...
> @esDotDev you mention many things that are worth a comment. I can't put too much time into discussions like that right now, I'm sorry for that, I hope you...
> Why do you want to enforce that? What does that enable you to do? Since static methods are not polymorphic, even if you require a handful of classes to...
It's about declaring a contract, like any interface is meant to. Our team can have a convention, when you create a new link you must extend AppLink, then the compiler...
Well sections of code get commented out / in all the time. When creating an AppLink the first time, the developer is in the best mental space to fully define...
Thoughts: 1. I don't think it make sense to use a delay with autoPlay = false. The entire intent of autoPlay=false, is "I will handle the play call myself, at...
Alternate option, just document that delay is ignored if autoPlay = false, it doesn't really make semantic sense anyways, if there is no autoplay, what is delayed.... Once the user...