material-prefs
                                
                                
                                
                                    material-prefs copied to clipboard
                            
                            
                            
                        DateTimePicker not updating label when onSelected called
Hi, I noticed that the BaseDateTimePickerPreference isn't updating the label when you select a time, wasn't sure if this was a bug or feature? but the listSingleChoice updates the label on select.
Before
 protected fun onSelected(value: Calendar) {
        saveValue(value.timeInMillis)
        onValueSelected?.invoke(value)
    }
After
  protected fun onSelected(value: Calendar) {
        saveValue(value.timeInMillis)
        onValueSelected?.invoke(value)
        val text = valueConverter?.invoke(value) ?: defaultFormatter.format(value.time)
        view.setLabelText(text)
	}
It was a quick fix and likely a more elegant solution exists, but thought I'd share in case others found this issue.