
Github link: https://github.com/anwholesquare/flutter_get_x In this article, we will learn about Flutter state management with getX which is a powerful state management library for building applications using the Flutter framework. It offers a simple... https://blog.khandokeranan.com/flutter-getx

As the former CEO of Teta, a dynamic app builder for Flutter, my team and I embarked on an ambitious journey to bring our application to the iPad. We envisioned a world where not only developers but also no-code enthusiasts could leverage the power o... https://andreabuttarelli.com/learning-from-teta-ipados

Variable declaration and its fundamentals are the basic building block of any programming language. Let’s explore a little bit about dart variables.
Variable is a named space in memory that stores value. You can say that it is a container for data. ... https://blogs.jaytillu.dev/variables-in-dart
Flutter is getting popular and companies are adapting flutter in their development works. Hiring Flutter developers and building a dedicated Flutter team all sound great. However, while multiple developers are working on the projects, merge conflicts... https://blog.rabinacharya.info.np/folder-structure-that-makes-the-teamwork-easier-in-flutter

Dart supports three types of data type. They are represented in a very simple and concise manner. (Let’s keep List and Maps aside for the collection part.)
Numbers
Strings
Boolean
NOTE:- Although Dart is strongly typed, type annotations are opti... https://blogs.jaytillu.dev/data-types-in-dart

In this blog series, I will be sharing my experiences, challenges, and achievements as I embark on this GSOC adventure. Join me as I dive into Week 5, where I kickstart my work and make significant strides toward my project goals.
How the week start... https://mehulkumar.hashnode.dev/week-5-gsoc23-with-librehealth

SDK means Software Development Kit. SDK is a package in which various tools are packed to develop software for a particular platform. Every platform’s SDK gives you different tools, libraries, and software that can help you create the software for th... https://blogs.jaytillu.dev/dart-sdk

Thanks to Lucas Reis for his excellent article on simple react patterns which was a major influence for this article.
I’ve been writing applications using component-driven frameworks like React and Flutter for a few years now. Along the way, I’ve no... https://poetryincode.dev/simple-flutter-patterns-in-dart-3

I experienced the challenges of working with TLV data when setting up an MPOS (Mobile Point of Sale) device. During the process, I struggled to find a suitable TLV parser in Dart that met my specific requirements. This led me to develop my own TLV pa... https://kevin.hashnode.dev/writing-a-tlv-parser-in-dart-cljh7scil000009l342ffb0ra

Let's say you have a method that does the following:
Downloads an image from the internet
Create several copies of the image but resize them
Shows the original image and the copies on the screen
Specifically, it would be a method like this: Futu... https://davidserrano.io/why-you-should-use-flutter-compute-method-for-intensive-tasks