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
Expected behavior
onLoadEnd should be called when image loading is done.
Dependency versions
React Native version: 0.77.0
React version: 18.3.1
React Native Fast Image version: 8.9.1
Additional Information I found
as I tried to track down the issue. I found that _eventEmitter is nullPtr FFFastImageView->onLoadEndEvent and this condition if (_eventEmitter != nullptr) {...}
never gets passed.
👋 Welcome to the community!
Thank you for opening your first issue. We appreciate your contribution and will review it as soon as possible.
Feel free to ask questions, share ideas, or provide any additional details! We're here to help. 😄
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior if possible, or a link to a reproduction repo:
Expected behavior
onLoadEnd should be called when image loading is done.
Dependency versions
Additional Information I found
as I tried to track down the issue. I found that _eventEmitter is nullPtr
FFFastImageView->onLoadEndEvent
and this conditionif (_eventEmitter != nullptr) {...}
never gets passed.
to understand why its nullPtr, found that
- (void)updateEventEmitter:(const facebook::react::EventEmitter::Shared &)eventEmitter
method where we set eventEmitter never gets called
The text was updated successfully, but these errors were encountered: