
Prerequisites Before you begin building a Flutter app, you need to have the following software installed on your system: Flutter SDK The first thing you need to install is the Flutter SDK. The Flutter SDK is a set of tools that allows you to develop,... https://harshvardhan082.hashnode.dev/our-1st-flutter-app

Introduction The pubspec.yaml file is a core file in all Flutter projects. It is a YAML (YAML Ain't Markup Language) file that contains configuration settings for a Flutter project. The pubspec.yaml file specifies dependencies, assets, and other meta... https://harshvardhan082.hashnode.dev/use-of-pubspecyaml-file-in-flutter

In this blog post, I'll share my experience of building a calendar UI in Flutter that my boss challenged me to create. I'll discuss the steps I took to enhance and customize the screen to meet the project requirements. So, if you're interested in lea... https://damilared.hashnode.dev/building-a-customizable-calendar-ui-in-flutter-a-beginners-journey-to-mastery

JSON (JavaScript Object Notation) is an open-standard file format used for the exchange of information between web servers and clients. It is lightweight, easy to read, and human-readable. In this article, we will explore what JSON is, its features, ... https://harshvardhan082.hashnode.dev/json-file-format

Hi! This is the series of learning Dart programming language. In the previous chapter, I explained the difference between var and dynamic and introduced you to the Dart. Today, we discuss Dart compilers and how your code executes and turns into worki... https://flutterdart.hashnode.dev/compilers-in-dart

In this article, we’ll take a look at the fundamental building blocks of a Flutter project. We’ll go through the project structure of a Flutter app in detail and explain what each file and directory represents. Introduction Flutter provides a well-de... https://harshvardhan082.hashnode.dev/project-structure-in-flutter

"No-code" is a trend. It seems to be easy to start, but suddenly you recognize this: "Can I export application code?" Its answer is yes and no. Almost all no-code builders are having NO ability to export their code. Is it should be a secret sauce? I ... https://ideagarage.hashnode.dev/with-flutterflow-you-can-get-the-entire-application-code

Hey Guys, if you are reading this the chance is you have been using Flutter or have started using it to make cross-platform applications. In this blog, I will be sharing the steps I took as a beginner in my college that later landed me an opportunity... https://flutterrdev.hashnode.dev/how-learning-flutter-changed-my-development-career

Code generation will take your Flutter app development process to the next level. You'll learn how to use freezed to generate data classes and unions to greatly reduce the amount of boilerplate code in yo... https://blog.launchclub.io/flutter-freezed-code-generation

introduction Null is bad. Most people wouldn't argue with this unless they haven’t programmed on anything other than mainframes. But most programming languages have some kind of null and don’t have a great way of getting rid of it so we make due. Tak... https://blog.jonaylor.xyz/null-is-worse-than-you-think