Posts

Showing posts from April, 2023

How To Transition To New Page With Slide Left To Right In Flutter

In this post, we shall discuss the page routes transitions in the Flutter build apk . We will use the PageRouteBuilder method to animate our tradition between two different pages. You will definitely get an illusion of all types of transitions that are possible and you will be able to customize them as well and make your own Custom Transition.  

How To Use Overflow Box With Padding Using Flutter App

  A flutter in widget that imposes different constraints on its child than it gets from its parent, possibly allowing the child to overflow the parent.

How To Hide Show Password Using Flutter Android App

  Show/Hide Passwords in Flutter's TextFormField. I want a button-like interaction that will make passwords visible and invisible in the flutter apk build . Can I do it inside TextFormField? Or I will have to make a Stack widget to get my required UI.