Albert Wolszon
Albert Wolszon
@sefidgaran thank you. We used your fork at my company and it's working flawlessly. Keep it up! :)
What if we made it available to the developer to change the `requiredNetworkType` with proper explanations referring the #129, so that this package could still be used, just on developer's...
Is there any update on this?
I use this as a solution to this problem, I'm adding the error to the `catch` block in the controller: ```php $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $user = $form->getData();...
+1, I think this would be a really handy feature and it seems like it's not that hard to implement. Thanks for your package!
For example when you have a `RichText` containing some ordinary text and a link in it: ```dart final tapRecognizer = useTapGestureRecognizer() ..onTap = () => print('Hello!'); return Text.rich(TextSpan( text: 'Hello...
> Hooks are for state composition. Hmm, I just thought as it would be nice to have the family of hooks more complete with gesture recognizers, as they need proper...
https://github.com/flutter/flutter/issues/16092#issuecomment-475237976 @andreasunterhuber this is the solution to my problem that I've spent few hours on! Thank you! Flutter team, I beg you to add this issue to some flutter.dev website...
You can use `dart test` with the `--coverage` option and then format output files to lcov just like here: https://github.com/Albert221/FastShopping/blob/5af8fc848d993d74cf0e989473f54ed112de8a00/.github/workflows/test.yml#L95-L96
Another use case of such expanded hit testing area would be when we set the offset of `RenderBox` children outside of its size. This way, the children cannot be hit...