Obtenez de la valeur à partir d'un autre TextInput et Set est à un autre en utilisant jQuery

// If you have input value for hours and for the money(which is readonly) them this works
$("#hours").change(function(){
  let times = $('#hours').val();
  $('#amount').val(20000 * times);
});
godfreysseki