If you’ve tried to dismiss the keyboard in a Flutter app by tapping outside of a form field and nothing happened, don’t fret. You’re not crazy. This isn’t a behavior that Flutter provides out of the box. So how do we dismiss the keyboard in Flutter? Fortunately, there’s a relatively simple solution. What’s the Expected […]
Four Easy Ways to Debug Network Requests in Flutter
When I first started working with Flutter, I was surprised to find that it has no built-in tooling to debug network requests. While it does provide a solid debugging experience via Flutter DevTools, inspecting network requests isn’t part of the package. As developers living in an age where apps that connect to the internet are the […]