Brent Mifsud

Results 36 comments of Brent Mifsud

Strangely enough, if you download 1.4.1, then update to 1.4.2, this issue does not happen. Seems to only happen on a fresh install of the addon manager

> How can you update to 1.4.2? Running 1.4.1 has the same error, and there's no auto-updater in 1.4.1 anymore that I can see. There was an update button at...

Replace the code in question with: ``` ForEach(modalManager.modals.indices, id: \.self) { index in ModalView(currentModal: $modalManager.modals[index]) .environmentObject(self.modalManager) } ```

the pull down to refresh method is quite simple to implement. Take a look at https://www.youtube.com/watch?v=RvDYlPRm5Ww

> Is it right to handle this funcion in setLoggingIn in LoginViewController? We already basically have this functionality in the LoginViewController when we added the activity spinner underneath the login...

If you are using an iPhone X, XS or XS max, the network activity indicator will never be visible. This issue is only relevant to iPhone 8 and prior.

> I am passing a function handleDownloadPosterImage(data:error) instead of closure. Now my question is how do I make weak self in the function instead of closure? Do I have save...

there seems to be an issue with IGListKit's Package.swift file. This is corrected in one of their outstanding PRs. I will leave this PR open and update it when IGListKit...

IGListKit SPM support is broken. Can't do much until that's updated. Honestly I think IGListKit is abandoned. Your probably better off using compositional layout and diffable data source. And even...

I think this should be a built in feature of async sequences. When I first started using them, I assumed this would work (coming from RX and combine) but was...