Category: Flutter
Posts 11–20 of 23
Testing is a crucial part of the software development process. Writing and running automated tests make sure our application remains robust with every change.
Let's Build an Android Launcher Application with Flutter
Launcher app is one of the most important application for android mobile users. In this article we are going to learn to build Android launcher application using Flutter framework.
Recommended Flutter Plugins and Packages for Every Project
What makes Flutter great are it's ecosystem of packages and plugins that make it possible to build complex integrations and functionalities in a fraction of seconds. Lets look at some of the plugins and plackages that are recommended for every Flutter project you create.
Gears I Use Every Day for Work and Personal Projects
As a programmer and content creator I use various gears to complete my day to day tasks. Though advance gears are not the most important things, they most certainly help. In this article I will share the gears I use everyday.
Demystifying Dart Extension Methods
Dart extension methods provide us with a easy and clean way to extend external libraies to our specific needs without touching their source code. Let's learn what they are and how to use them.
Testing Docker Images
Docker containers have become standards for containarized development and deployment. It is very important to make sure that the docker image we build are not missing anything and are working properly. In this article we will learn how we can write tests for docker images to make sure it is built properly.
Integrating with REST API in Flutter
In this article we will introduce REST API briefly and then learn to integrate external service into our Flutter application using REST API. We will be using the official http package however after learning the fundamentals you will be able to use any other library to make a http request in Flutter.
My Favorite Development Tools and Tech Stack for 2023
I am a full-stack developer currently working as a Software Engineer at Appwrite. In addition to office work, I have many different side projects. I build web applications and mobile applications, and I am an enthusiast who tests and tries many different technology stacks. During my 19-year journey in programming, I have worked with many different technologies. In this article, I will discuss my recent tech stack and development tools for both work and personal projects.
Flutter Calendar App Optimizing Query and Managing Events
In previous two parts we learned to setup calendar and load and display events from Firestore. In this third and final part in the series, we will optimize the Firestore query so that we will only load the events necessary for the visible days in the calendar. Then we will also setup CRUD to allow to add, update and delete the events.
Loading and Displaying Events from Firestore in Flutter Calendar App
In this second part of Flutter Calendar App tutorial, learn to integrate Firebase and then load and display event markers in calendar from Firestore database.