
There is nothing much difference between a stateful and a stateless widget other than the ability to change when a user interacts with a component on the screen.Stateless widgets are widgets that do not require mutable states. It describes part of th... https://atuoha.hashnode.dev/understanding-stateless-and-stateful-widgets-in-flutter

Swift and Flutter are two popular programming languages and frameworks for building mobile applications. Here is a technical comparison between the two:
Programming Language: Swift is a compiled programming language developed by Apple Inc. for their... https://harshwsingh.hashnode.dev/swift-vs-flutter

Introduction 🙋🏻♂️ Open-Source is the best way to get your hands on complex and well-structured Flutter projects. Many people wish to do open-source after learning something new but they don't know where to begin with. So I have compiled a list of ... https://cswithiyush.hashnode.dev/5-open-source-flutter-projects-to-boost-your-skills

This article will show you how to create a simple Flutter Desktop App with the ability to quickly change the size of the window, which is useful in cases where you need to test different graphic layouts and don't want to change the size of the window... https://blog.albertobonacina.com/change-window-size-on-flutter-programmatically

Introduction to Hacktoberfest Hacktoberfest is a yearly event organized by DigitalOcean and GitHub that encourages developers to contribute to open-source projects. This year, I decided to participate in Hacktoberfest as both a contributor and a main... https://nitin-787.hashnode.dev/hacktoberfest-a-month-of-learning-collaborating-and-giving-back

State Management State management is crucial when developing Flutter applications. In a typical Flutter application, a single screen can contain many different states, which are constantly changing as a user interacts with the application. It could b... https://nsikak.hashnode.dev/flutter-state-management-with-getx

I know you must have googled a lot of information about Flutter knowing when it was introduced, who introduced it, its use cases, the engine it is running on, the one it was running on before this new one and many other facts but want to get your han... https://atuoha.hashnode.dev/your-first-flutter-app

If you've read the previous blog you know that I wanted to give a shot at using FlutterFlow. Well, I did, and at first, it felt like this was going to be a timesaver for sure! However, after the simple crud-like functionality, I started running into ... https://fluttergamedev.com/devblog-6-swimming-against-the-current
Most of the apps you use have a feature that refreshes the page when you pull down from the top of the screen to refresh the page! It is called the Refresh indicator! Let's learn how to use them in flutter projects with the provider package! We will ... https://rustyrishii.com/how-to-make-api-calls-using-the-refresh-indicator-and-provider-package-in-flutter

In my previous article on Flutter Tips and Tricks (Part 1/2) I talked about the very basic things that can help your Flutter app improve on performance. The six points I listed are:
Refactor your code into Widgets Instead of Methods
Use const keywo... https://jacksiro.hashnode.dev/flutter-tips-and-tricks-part-2