Flutter

Tips to Make Your Flutter Apps Faster

We’ve been making Flutter apps for a while now, but we never discussed making them faster, which is fine though, because by default Flutter apps run faster already, unless we are unconsciously making bad decisions when writing the code. That is why today we’re going to tackle those bad decisions, and I’ll also give tips to …

Tips to Make Your Flutter Apps Faster Read More »

How To Test Your Flutter Apps

Today we’re going to learn how to test your Flutter apps, specifically the performance of the apps. When it comes to mobile apps, user experience is everything. Users want apps to have smooth scrolling and meaningful animations that are devoid of jank, or stuttering, or skipped frames. There are two ways. The first is to personally …

How To Test Your Flutter Apps Read More »

How To Report Errors In Flutter

Today’s blog post will be about how to report errors in Flutter. While every effort is made to produce bug-free software, bugs are bound to appear from time to time. As a result, defective apps lead to dissatisfied users and customers. It’s critical to identify how frequently your users encounter defects and where those errors …

How To Report Errors In Flutter Read More »

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 »