Harry Sild

Results 32 comments of Harry Sild

Parent widget would be: ```dart class ExampleParentScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( extendBody: true, backgroundColor: Themes.white, bottomNavigationBar: const NavigationWidget(), body: CustomScrollView( physics: BouncingScrollPhysics(), slivers: [...

Now Imagine scrolling up so the appbar collapses: the red gets smaller, and the blue gets proportionally bigger. In 1.0.9 that was the behaviour if you didn't specify height to...

![Screenshot 2021-08-02 at 13 12 36](https://user-images.githubusercontent.com/46851868/127845415-9bf4437e-004b-4db7-b7f7-4b79c49b710b.png) I'm indeed only running the example and it only works if I disable `video`. Disabling `photo` or `audio` or any combination not `video` does...

From my pov the bigger issue is namespaces. I've been to React/RN projects where these atomic state enablers (useState/proxy/create/whatever) usually mean you have singular values bound to singular identifier. And...

Hah the static field one is brilliantly simple way to address namespace. It very well exemplifies how it is sometimes very hard to get out of the mindset that everything...

Now I see where I went wrong and why I asked hopefully not too obvious questions. I was trying to do: ```dart Widget build(BuildContext context) { final levelStateCreator = Creator((ref)...

These changes have unintended consequences. For instance when bottomsheet has a ListView in it, going from a continuous horizontal drag to vertical it will start to drag the bottomsheet instead...

This can be fixed by not using rootNavigator in the story.

Is there any tentative timeline for this feature to become a reality yet?

App hash (signature) can be precomputed or fetched on runtime:[https://developers.google.com/identity/sms-retriever/verify#computing_your_apps_hash_string](https://developers.google.com/identity/sms-retriever/verify#computing_your_apps_hash_string). Then it would get get appended to the SMS via the `appHash` optional parameter when doing POST request to `https://verify.twilio.com/v2/Services/{ServiceSid}/Verifications`....