Parameters
A callback function that executes when the view disappears from screen.
Called when this view disappears from screen.
.onDisappear(action: () => void): Component;
Text("Goodbye World")
.onDisappear(() => {
console.log("Text disappeared!")
})