Version 1.1.0
Hey everyone! The major addition this time is a search bar!
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