Last active
July 15, 2022 10:35
-
-
Save nbnD/52787605105553d38acf2e65e8cf17c4 to your computer and use it in GitHub Desktop.
Date picker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TextField( | |
controller: dateController, //editing controller of this TextField | |
decoration: const InputDecoration( | |
icon: Icon(Icons.calendar_today), //icon of text field | |
labelText: "Enter Date" //label text of field | |
), | |
readOnly: true, // when true user cannot edit text | |
onTap: () async { | |
//when click we have to show the datepicker | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment