Created
March 16, 2021 14:11
-
-
Save rjcalifornia/963c17e84b7b60522654b0a8f6fdc58e to your computer and use it in GitHub Desktop.
This file contains 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
GestureDetector( | |
onTap: () => _selectDate(context), | |
child: AbsorbPointer( | |
child: TextField( | |
style: TextStyle( | |
color: Color(0xff313945)), | |
controller: birthdate, | |
decoration: InputDecoration( | |
labelText: 'Date Of Birth *', | |
prefixIcon: Icon(Icons.cake)), | |
), | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment