nalexn / clean-architecture-swiftui

SwiftUI sample app using Clean Architecture. Examples of working with CoreData persistence, networking, dependency injection, unit testing, and more.
MIT License
5.56k stars 671 forks source link

How do I add pagination? #83

Open vasicer opened 1 year ago

vasicer commented 1 year ago

I am newbie in swiftui.

I am trying to add Pagenation in this feature. If I try to use append as values in loadable<[Model]> , I will get get-only property error.

Model.value.append($0)

How can i fix it?