
width: double.infinity :
creating custom flutter widget :
added icons using font_awesome_flutter package :
gestureDetector (instead of textButton ) :
Enums in dart :
Ternary operator : https://shreshtxa.hashnode.dev/flutter-day14

Introduction In the fast-paced world of mobile app development, staying up-to-date with the latest technologies and frameworks is essential. Flutter, Google's open-source UI software development kit, has gained tremendous popularity among developers ... https://jacksiro.hashnode.dev/managing-flutter-versions-for-your-app-1

Flutter, developed by Google, is an open-source UI framework that allows developers to create beautiful and high-performance applications for various platforms, including Android, iOS, web, and desktop. If you're a Windows user eager to dive into Flu... https://raman04.hashnode.dev/a-comprehensive-guide-to-installing-flutter-on-windows

State Management in Flutter was one of the hardest things to grasp for me while learning Flutter. To be honest, I still have trouble with it even today, after working with Flutter for more than a year. So, in this article, I want to give you a high-l... https://growthandtech.hashnode.dev/state-management-in-flutter-for-beginners

In Flutter, widgets have a lifecycle that determines how they are created, updated, and disposed of. Understanding the widget lifecycle is essential for managing state, performing side effects, and optimizing your Flutter application. Let’s dive into... https://pranjal-barnwal.hashnode.dev/widget-lifecycle-flutter

Introduction : Flutter extensions are a powerful tool that can be used to extend the functionality of Flutter apps. They allow developers to add new features, improve performance, and simplify their code. There are a wide variety of Flutter extension... https://sungod.hashnode.dev/flutter-extensions

The Problem It is common practice to use these signs when managing the dependencies. It is even recommended as a best practice. Today, I will declare an anomalous idea. When you use +, ^, or … signs for the versions of dependencies, Flutter Package M... https://emres.hashnode.dev/and-signs-will-break-your-flutter-build

This article explores the seamless integration of Riverpod's state management capabilities with Flutter's theming system, enabling you to create dynamic and customizable UIs, you will learn how to define and update themes and leverage Riverpod's prov... https://blog.albertobonacina.com/theme-and-accent-color-switch-with-riverpod-in-flutter

In this Video, I show you How to Add Firebase Setup to Flutter app for Android & IOS 2023. https://youtu.be/mAZ03PCp2ZI
Enjoyed the Tutorial? Please leave a LIKE 👍 to show your support and appreciation 💬 If you have a question about anything in t... https://alltechsavvy.hashnode.dev/how-to-add-firebase-to-flutter-app-android-ios-2023-clk2n64le000i0ak4dldghq3r

In this article, we’ll see how to create a dropdown widget and use it in multiple kinds of datasets. Now let’s create a stateless class named as CustomDropdown: import 'package:flutter/material.dart';
class CustomDropdown extends StatelessWidget { ... https://blog.dipenmaharjan.com.np/how-to-create-a-dropdown-widget-to-apply-for-any-kind-of-lists-in-flutter