Skip to content

Version 1.1.0

Compare
Choose a tag to compare
@aheze aheze released this 11 Dec 04:11
· 44 commits to main since this release

Hey everyone! The major addition this time is a search bar!

Screen Shot 2020-12-10 at 7 52 52 PM

You can customize its properties via SupportOptions like usual.

let options = SupportOptions(
    searchBar: .init(
        placeholder: "Type here to search!", /// placeholder
        placeholderColor: UIColor.label.withAlphaComponent(0.75), /// color of the placeholder
        textColor: UIColor.label, /// text color
        tintColor: UIColor.blue, /// color of cursor and cancel button
        backgroundColor: UIColor.secondarySystemBackground.withAlphaComponent(0.3), /// color of the search bar's background
        clearButtonMode: .whileEditing /// when the clear button appears
    )
)

But besides that, here's some other minor edits:

  • Apply the navigation bar styles with the same code for both iOS 13 and 14
  • Smoother fade animation for the list once the JSON loads