(instance: Instance, props: Props)
| 577 | } |
| 578 | |
| 579 | export function unhideInstance(instance: Instance, props: Props): void { |
| 580 | const viewConfig = instance.viewConfig; |
| 581 | const updatePayload = diff( |
| 582 | {...props, style: [props.style, {display: 'none'}]}, |
| 583 | props, |
| 584 | viewConfig.validAttributes, |
| 585 | ); |
| 586 | UIManager.updateView( |
| 587 | instance._nativeTag, |
| 588 | viewConfig.uiViewClassName, |
| 589 | updatePayload, |
| 590 | ); |
| 591 | } |
| 592 | |
| 593 | export function applyViewTransitionName( |
| 594 | instance: Instance, |