Skip to main content

Posts

Showing posts from August, 2021

Dive Into Designing Flutter TextField

   Dive Into Designing Flutter TextField autofocus:   Sets focus on TextField by default (i.e. as screen loads that contain TextField() in it, the keyboard opens up itself) Changing Keyboard Type: Allows you to customize the keyboard. Types are:     1.  TextInputType. text  (Normal Complete keyboard)     2 .  TextInputType. number  ( for unsigned numerical information without a decimal point )     3.  TextInputType. phone  ( for telephone numbers )     4.  TextInputType. name  ( or a person's name )     5.  TextInputType. datetime  ( for date and time information )   6.  TextInputType. text  (Normal Complete keyboard)     7.  TextInputType. emailAddress   ( for email addresses )     8.  TextInputType. multiline   (f or multiline textual information, a ccepts newlines when enter           ...