© 2023 Hashnode
#flutter-widgets
So about a year ago, I started learning the Dart programming language and Flutter to build my final year project and here is how I did it. Firstly, we need to know what these tools are. Dart and Flutt…
We will cover briefly: What is Google Pay Integration of Google Pay Payment results UI elements My E-book on Flutter — https://harvinder.gumroad.com/l/flutter-ebook What is Google Pay Google Pay (known as G Pay) is a digital wallet pl…
Introduction This article will explain about flutter Dropdown button which has icons for each item. The addition of icons to the text gives the user interface (UI) a great look. Let's try it out now! …
Navigation is an essential part of any mobile application. A well-architected application provides users with consistent navigation which further enhances user experience and helps keep the app organi…
BuildContext is present everywhere in Flutter. It is used in the build method of StatelessWidgets and State classes. It is also used in different scenarios like: When calling Navigator.of(context) to…
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 n…
Introduction Recently while working on a personal project using Flutter, I got the need of having a progress indicator that would show the percent completion of a task by the user. I was initially usi…
Are you using setState() correctly? Or have you noticed how many times the build() method is called? If not then keep reading this article where I will talk about Provider implementation and a common …
Freelancer Freelancing is a type of work arrangement in which individuals work for themselves, rather than for an employer. Freelancers typically offer their services to several different clients and …
In Dart, a class is a blueprint for creating objects. It defines the properties and behaviors that an object of that class will have. A class is a way of organizing and structuring code in an object-o…