You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the same `nativeEvent` structure as in RN for the onLoad event
BREAKING CHANGE
`onLoad` was previously called with `nativeEvent` that was the browser Event object
from the image.onload handler
Since we can't spread or mutate the Event object to add `source` we have to
either add it under a new key or remove it
The browser Event does not expose very useful information, (no target, or size info),
so it seems best to replace `nativeEvent` with the same structure used in `react-native`
0 commit comments