codeslubber
DatePicker
AlertDialog
Philip Blandford
@Composable fun showDatePicker() { if (showDialog.value){ Log.d(logTag, "inside dialog...") DatePickerDialog( context, DatePickerDialog.OnDateSetListener { view, year, month, day -> Log.d("DEBUG", "inside onDateSetListener..") }, 2020, 0, 1 ).show() } }
showDialog
A modern programming language that makes developers happier.