How to Change Package Name in Flutter
In android, every app has a unique id. The unique id is very important for identifying the particular app. The id looks like a java package name. You can use…
How to Add Border to a Widget in Flutter
Adding a border to any widget in flutter is very easy. To do that, first, wrap your existing widget as Container Widget. In the container widget, we can use decoration…
Create Outlined Button in Flutter – OutlinedButton Widget
Flutter - Creating the Outlined button is very easy. The OutlinedButton widget allows you to create outlined buttons in an easy way. so, let's get started. Creating OutlinedButton First, create…
Create Rounded Button in Flutter – #1
Hello guys, creating a rounded button in flutter is very easy. In this blog, you will learn different ways of creating rounded buttons in a flutter. So let's get started.…
How to use Hexadecimal Color Code in Flutter
To use hexadecimal value in a flutter, first, call the Color class and pass the hexadecimal color as an argument. For Example, To use the red color in our app,…
Remove debug banner in Flutter
In flutter, the debug banner appears only on development mode and it is automatically removed when the app is in release build. Basically, a flutter debug banner is a small…
Flutter Navigation Without Context
In Flutter navigation without context between two screens is very easy with the help of Getx package. For more info about Get Package, click here to read our article. In…
Flutter Expansion Panel Detailed Tutorial
Flutter Expansion Panel List Tutorial
Create Dismissible ListView in Flutter
Swipe to dismiss is a popular feature in Mobile apps. For most known example is email apps like Gmail, Outlook, etc. Most popular apps have this feature. So, In this…
Flutter Custom Alert Dialog
Custom Alert Dialog Alert Dialog is a kind of small popup window. It is used for users to make decisions, showing information to users, asking input from users, etc. It…