Trends

How To Read And Write Files In Flutter

Almost all apps can read and write files into the device’s storage, from desktop apps to mobile apps. That is why today we are going to learn how to read and write files in Flutter, as this is foundational to our learning on this Flutter journey. You may need to read and write files to …

How To Read And Write Files In Flutter Read More »

How To Parse JSON in Flutter

From desktop apps to mobile apps, the utilization of JSON is just unavoidable. That is why it’s critical for us Flutter developers to learn such object notation, utilize it, and then mold it into whatever data we would like. That is why today we’ll learn how to parse JSON in Flutter! Let’s get started! Despite …

How To Parse JSON in Flutter Read More »

Update Data On The Internet In Flutter

Most apps require data updates through the internet. Once again, the http package has you covered. On this blog, we’ll use the http package to update data via the internet. Create a custom Dart object from the response. Get the data from the internet, use user input to update the existing title, and lastly, display …

Update Data On The Internet In Flutter Read More »

How to Use WebSockets In Flutter

What if I told you there’s a way to communicate with the server without server polling? That’s where WebSockets come in handy. That is why today we are going to learn how to use WebSockets in Flutter. In this blog we’re going to create an app that connects, listens, sends, and closes WebSocket connections. Let’s …

How to Use WebSockets In Flutter Read More »

How to Authenticate HTTP In Flutter

In Flutter, if you want your HTTP requests to be authenticated, you must utilize this Authorization class and read this blog to know how to authenticate HTTP in Flutter. Most web services require authorization before you can retrieve data. There are several approaches to accomplish this, but one of the most prevalent is to employ …

How to Authenticate HTTP In Flutter Read More »

How to Make Adaptive Apps In Flutter

Image credit to: Louie Jay Lomibao Today’s topic is about how to make adaptive apps in Flutter. Fundamentally, adaptive and responsive design are two techniques for designing for a wide range of devices. In its most basic form, responsive design employs a single layout and adjusts the page’s text, navigation, and elements to match the …

How to Make Adaptive Apps In Flutter Read More »