codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.
https://pub.dev/packages/flutter_material_pickers
MIT License
98 stars 61 forks source link

Allow changing the bottom buttons text and onpressed #3

Closed fernando-s97 closed 4 years ago

fernando-s97 commented 4 years ago

It would be nice if we could change the bottom buttons text and pass our own click handler (at least in showMaterialResponsiveDialog)

codegrue commented 4 years ago

You do pass a click handler for OK. Do you need one for Cancel also?

fernando-s97 commented 4 years ago

Supposing the scenario where I could change the text of the Cancel button (which means it would represent another action), it would be necessary to also have a custom callback

codegrue commented 4 years ago

label text fixed on v1.6.0. For the cancel callback, do you just need to know it was pressed?

codegrue commented 4 years ago

Added onCancelled handler in v1.6.0 also.