Reputation: 11
Hello i'm currently developing a mobile app for a existing web app that use laravel and livewire.
I know that's already a specific case...
I'm using flutter_inappwebview (6.1.5) to implements part of the web app in the mobile app, one of the page where there is my problem is a feed of multiple livewire component. He is actually working well in the web app version on any browser but in the webview, there are some case when livewire juste stop working. Not all the JS, only livewire.
For exemple, the feed got an infinite scroll and when I'm scrolling very fast to the bottom, livewire stop working on all the page. But if I scroll slowly "enough that the post can load (I guess)" the livewire doesn't have any issues.
Upvotes: 0
Views: 22
Reputation: 11
Well, I manage to solve it. I was having a property with the attributes #[Url]
in my parent components and a foreach of child components on it. That was calling history resetState() too many times. It's only a warning in chromium but on webkit that makes an error.
Upvotes: 0