We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if this is a bug or an error in my implementation but i'm unable to correctly format the datepicker. Attaching my current code and view
BottomPicker.date( title: 'Date of birth', dateOrder: DatePickerDateOrder.dmy, initialDateTime: dateOfBirth, maxDateTime: DateTime.now(), minDateTime: DateTime(1923), titleStyle: TextStyle( fontWeight: FontWeight.bold, fontSize: 16, color: Color(0xFF4202A6), // Assuming this is the title color letterSpacing: -0.3, ), titlePadding: EdgeInsets.only(top: 15), // Adjust padding to align the title with the close button onChange: (index) { HapticFeedback.lightImpact(); }, onSubmit: (index) { print("DATE"); print(index); dateOfBirth = DateFormat('dd MMM yyyy').format(index); _submitForm(); }, pickerTextStyle: TextStyle( color: Colors.black, fontSize: 18, letterSpacing: -0.3, ), buttonText: 'Confirm', buttonTextStyle: TextStyle( color: Colors.white, fontWeight: FontWeight.w600, letterSpacing: -0.2, ), buttonSingleColor: Color(0xFF4202A6), displayButtonIcon: false, buttonPadding: 10, dismissable: true, height: 350, ).show(context);
I want to make the following changes:
Thanks!
The text was updated successfully, but these errors were encountered:
is this even fixed? its still not possible with dateTime
Sorry, something went wrong.
@tiltmaster still not fixed I'll work on it and let you know
koukibadr
No branches or pull requests
Not sure if this is a bug or an error in my implementation but i'm unable to correctly format the datepicker. Attaching my current code and view
I want to make the following changes:
Thanks!
The text was updated successfully, but these errors were encountered: