Time Picker Dialog - StansAssets/com.stansassets.android-native GitHub Wiki

The AN_TimePickerDialog is a simple dialog containing native Android Time Picker Widget inside, that will allow your app user to pick a date.

var picker = new AN_TimePickerDialog(DateTime.Now.Hour, DateTime.Now.Minute);
picker.Show((result) =>
{
    if (result.IsSucceeded)
    {
        Debug.Log("Time picked result. Hour: " + result.Hour);
        Debug.Log("Time picked result. Minute: " + result.Minute);
    }
    else
    {
        Debug.Log("Failed to pick a time: " + result.Error.FullMessage);
    }
});