private void SetTimeOnNativePicker(TimeSpan newTime)
 {
     if (_nativePicker != null)
     {
         _nativePicker.SetHourCompat(newTime.Hours);
         _nativePicker.SetMinuteCompat(newTime.Minutes);
     }
 }