Articles about Flutter
-
Coding with Confidence: Master Testing in Flutter in record time!
Unlock the secrets to mastering testing in Flutter with this comprehensive guide. Discover strategies, tips, and best practices for building flawless applications in 2024.
-
From Good to Great: How Adopting SOLID Principles Can Save Your Flutter App from Disaster
Master SOLID principles for robust Flutter apps with this concise guide. Learn to build adaptable, maintainable code with clear examples.
-
Understanding Impeller: A deep-dive into Flutter’s Rendering Engine
Explore how Impeller boosts Flutter app performance. Learn to optimize your app by understanding Impeller's mechanics.
-
Flutter's Dependence on Third-Party Libraries: A Blessing or a Curse?
Explore the advantages and challenges of using third-party libraries in Flutter. Learn to navigate these aspects for effective app development.
-
Elevate Your Flutter App Accessibility without the hassle
Elevate your Flutter app's inclusivity with accessibility_tools. Implement essential accessibility features effortlessly for a user-friendly experience.
-
Develop before the Hype: Create your Flutter App for Apple Vision Pro
It's no secret: The Apple Vision Pro has officially been released! Learn how to reach a new user base in less than 3 minutes!
-
Debug your Flutter App like a Pro with these 5 Tips & Tricks!
Debugging your Flutter app can be hard. But it does not have to be. Today, I will show you 5 Tips & Tricks that help you squeeze those pesky little bugs. This also includes best practices, special error-handling cases, and more! Get a cup of coffee o...
-
My Indie Dev Journey: Week #2
Topics: How to Validate your Ideas, New Application Idea & About Not Tweeting Regularly Photo by Fotis Fotopoulos on Unsplash In my last Indie Dev Journey Story, I discussed a new app idea I wanted to validate throughout the week. I have done it, so ...
-
My Indie Dev Journey: Week #1
Topics: The Importance of X/Twitter Friends, Android Widgets & New Application Idea Photo by Fotis Fotopoulos on Unsplash Yes, I am stepping into this scene. The Indie Developer scene. I have been very silent over the past months here on Medium, as I...
-
Flutter Supabase — The Complete Crash Course
Supabase is a backend solution, that considers itself as the open-source Firebase alternative. It already gained some popularity among developers, mainly because of the wide range of supported languages and because it can be very useful for personal ...
-
The History of Flutter in less than 3 minutes!
Ever wondered what the history of Flutter is, but don’t want to read through long articles? Well, then you are at the right place here! In this article, you will get to know the most important milestones of Flutter in less than 3 minutes! Let’s get s...
-
Use GitHub Actions with Flutter — Crash Course
Automation is one of the best things we can have as developers. That’s why it’s very important to automate tests or builds when a new pull request was created, so we don’t have to do that manually. Today I will show you how to use GitHub Actions with...
-
How to draw in Flutter — The Complete Crash Course
In Flutter, you can create beautiful UI. But what if you want to create very complex UI parts? For that, you need custom paint. Luckily, Flutter gives you access to low-level painting with CustomPaint. In this article, you will get a basic introducti...
-
Dart Frog — The Advanced Crash Course
Dart Frog is an excellent tool for building a backend with Dart. I’ve already covered the basics in this article, so if you want to follow along, I recommend you read this one first. But come on, we want to dive deeper into Dart Frog. Let’s look at D...
-
Flutter Appwrite — The Complete Crash Course
Appwrite is a self-hosted backend solution, that gains more and more popularity over the last months. It can be very useful for personal and commercial Apps and provides great features. In this article, you will learn how to use Appwrite and see, tha...
-
Should I use Teta to Create Flutter Apps Faster?
Teta is a free-to-use app builder with which you can create great apps in a few seconds. But is it as good as Flutter? Many developers “worry” about their jobs, because low-code app builders could replace them, but is Teta able to do that? In this ar...
-
Flutter ARKit — the complete crash course
Ever wanted to use AR in Flutter apps? Well, ARKit can help you. It’s a package which is very easy to use as soon as you understood how it works. That’s why I will introduce you today into t...
-
Maintain great Dart Code Quality with these Simple Tips
Code quality is a crucial thing in development, no matter in what programming language you code. It’s especially important when working in a team or on an open source project, but also when you work on a personal project which could possibly expand w...
-
Use Dart on Servers with Dart Frog — The complete crash course
You can use Dart for so many things. One of them is the backend area. That’s why, I will show you today, how to use Dart Frog, a fast and minimalistic backend framework for Dart. Note: You can find the whole source code provided in this tutorial here...
-
The ultimate guide to testing in Flutter
Testing is an area in programming, that is very important, but no one really likes it. We still have to learn it, and that’s why I will show you, how to test in Flutter. We will take a look at Unit Testing, Widget Testing, and Integration Testing. In...
-
Flutter Sembast — The Complete Crash Course
Sembast is a NoSQL persistent store database solution for single process io applications. It’s fully document-based in a single file and is loaded in memory when opened. This can be especially useful when you want to analyze databases that the user s...
-
5 mind-blowing Flutter tips and tricks, that you can use right away!
Today I’m going to present to you 5 extremely useful flutter tips that you can immediately apply to your project. I won’t present you any packages or extensions, but very simple, but extremely useful tips! This article was created in cooperation with...
-
Flutter logger — The complete crash course
We all know the problem: We want to debug print our app, but the messages in the chat are just a mess. They are not formatted, it’s hard to get an overview…. it just isn’t fun. That’s why I will introduce you to the logger package, which solves exact...
-
Flutter FVM — Boost your Flutter productivity by 100%
Flutter Version Management (FVM) is a CLI Tool, which allows you to manage versions of the Flutter SDK in different projects. It’s a very great tool that every Flutter Developer should be familiar with. That’s why I will teach you how to use FVM! Why...
-
Flutter Dio explained — The complete crash course
Dio is a HTTP client for Flutter with many features. Many people like it because of its simplicity and feature-richness. Today, we will learn how to use it to enhance your app development in Flutter. Let’s get started! Installation Let’s start on how...
-
Flutter Hive — The complete crash course
Introduction Hive is a great package for your local storage. But sometimes it’s quite complex to get into that package. That’s why, in this article, I will show you how to use Hive very easily. Let’s get started! Note: You can view the whole source c...
-
Flutter Formz explained — The complete crash course
Formz is a great package for managing forms better. But sometimes it’s quite complex to get into that package. That’s why, in this article, I will show you how to use Formz while building a password validation field. Let’s get started! Note: You can ...
-
InsertionSort Crashcourse
InsertionSort is a very popular and easy to learn sorting algorithm. In this article you will learn about the features of InsertionSort and how to implement the sorting algorithm in different programming languages. I will explain you the code and muc...
-
BubbleSort in Dart — Sorting Algorithms
BubbleSort is a very popular sorting algorithms. In this article you will learn about the features of BubbleSort and how to implement the sorting algorithm in Dart. Of course, this code will also be explained. If you want to follow me further in this...
-
Learn Flutter & Dart like a pro — Dart Basics
In the last article we installed Flutter & Dart and improved our setup with numerous Visual Studio Code Extensions. Now let’s take a look at the basics of Dart and learn the syntax of Dart. Note: This series is not intended to teach you programming f...
-
Learn Flutter & Dart like a pro — The Basics
Want to learn Flutter & Dart to build great apps? Then you’ve come to the right place! In my brand new series, I will take you from a beginner to a pro! I’ll explain the concepts of Flutter & Dart, do tutorials on how to build apps and much more! The...
-
MergeSort in Dart — Sorting Algorithms
MergeSort is one of the most popular sorting algorithms. In this article you will learn about the features of MergeSort and how to implement the sorting algorithm in Dart. Of course, this code will also be explained. If you want to follow me further ...