How to Add shadow to the widget in Flutter
To complete Mobile app UI design shadows takes someplace. In Flutter adding shadows to the widget is very easy. There are some ways we can achieve shadow in widgets. In…
Show/Hide Password TextField/TextFormField in Flutter
Flutter TextField/TextFormField has a lot of customization. In this tutorial, you will learn how to implement the password show/hide button in the flutter. Also read, how to show/hide widgets programmatically.…
Flutter – Show/hide widgets programmatically
Flutter - Many times developers want to hide/show widgets depending upon conditions in the flutter applications. Using the Visibility Widget, we can easily archive the functionality. The Visibility widget is…
How to Change Application Launcher Icon in Flutter
Flutter - When the user creates a project, by default flutter icon will be a launcher icon. To publish your App to the Google Play Store and Apple App Store,…
Flutter – How to change the appBar back button color and icon
Flutter changing the appbar back button color is very easy. By default the appbar color is blue and the appbar icons and title color is white. If you change the…
Flutter Clickable Appbar Title
Flutter making clickable appbar title is very very easy. To make the clickable appbar title in a flutter, wrap the Text widget as InkWell or GestureDetector. In this tutorial, you…
Flutter – How to center the title of an appbar
Flutter aligning the title into the center of an appbar is very easy. By default, the title text is aligned left side of the screen in the android and web…
How to create a number input field in Flutter
Flutter TextField is the most popular widget for getting input from the user. The TextField Widget has tons of customization. We can easily customize the TextField depending upon our needs…
How to Change App Name in Flutter (Android & iOS)
In Flutter Changing App Name or App Display Name is very easy. By default, the app name is your project name. To do that, follow these steps. For Android First,…
Flutter: Changing package name – Simple Method using package
Changing the package name is very easy. We already posted a manual method for changing the package name. In this post, we discuss an easy and fast method for changing…