Louiejay Lomibao

How to Store key-value pairs In Flutter

You might already know how to read and write data in Flutter, but every now and then we need to store it in a key-value pair. That is why today I’m going to discuss how to store key-value pairs in Flutter. Let’s get started! The shared_preferences plugin can be used to save a small collection …

How to Store key-value pairs In Flutter Read More »

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 »