AdvancedList Versions Save

Advanced List View for SwiftUI with pagination & different states

8.0.0

2 years ago

No breaking changes

But because of a refactoring under the hood I decided to make a new major release.

Features

  • New APIs which mimic some SwiftUI List APIs
  • More freedom & control through the new custom content view API (checkout the Content example): Allows using ANY view you want as the list view: use a SwiftUI List or a custom view

More

7.0.0

3 years ago

Improvements

  • Breaking Change in Initializer: Replaced unnecessary Binding parameter with a simple value parameter

6.0.0

3 years ago

Features

  • Replace the SwiftUI List used under the hood with a custom list view, for example a LazyVStack (take a look at the README)

5.0.0

3 years ago

Swift 5.3

Make use of some enhancements made in Swift 5.3, like the ones made to function builders.

Pagination modifier 🚀

The pagination functionality feels now more like native SwiftUI. Easily add pagination support to your AdvancedList with the new .pagination modifier. Don't forget to read the migration section in the README.

Improvements & Refactoring

  • Say hello to code documentation 😀
  • Removed unnecessary self
  • Use @ViewBuilder instead of Group
  • Improved code indentation

4.0.1

4 years ago

4.0.1

Changes

  • Got rid off AnyViews and switch statement in AdvancedList view implementation
  • Uses the Group view with if statements and a map now