Skip to content

Instantly share code, notes, and snippets.

@nbnD
Last active July 15, 2022 10:35
Show Gist options
  • Save nbnD/52787605105553d38acf2e65e8cf17c4 to your computer and use it in GitHub Desktop.
Save nbnD/52787605105553d38acf2e65e8cf17c4 to your computer and use it in GitHub Desktop.
Date picker
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