Radio button selection works alright on both desktop and mobile but specifically on mobile there is trouble - radio is not showing the selection till page is touched again (anywhere) - upon additional touch the radio selection is displayed correctly.
Radio has a short click code attached that changes display of two elements on page -
tried to add return value to function but no change
export function radioGroup1_click(event) {
if ($w("#radioGroup1").value==="radman"){
$w("#woman").hide();
$w("#man").show();
}
else{
$w("#man").hide();
$w("#woman").show();
}
}