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
I've installed Vox using Cocoapods. But when I write:
let paginationStrategy = Pagination.PageBased(number: 1, size: 10)
the compiler show me the error: 'Use of unresolved identifier 'Pagination'; did you mean 'PaginationData'?'
In my opinion the reason of this issue that Pagination struct is not public. If I change this struct to public - everything is ok.
The text was updated successfully, but these errors were encountered:
I've installed Vox using Cocoapods. But when I write:
let paginationStrategy = Pagination.PageBased(number: 1, size: 10)
the compiler show me the error: 'Use of unresolved identifier 'Pagination'; did you mean 'PaginationData'?'
In my opinion the reason of this issue that Pagination struct is not public. If I change this struct to public - everything is ok.
The text was updated successfully, but these errors were encountered: