This repository was archived by the owner on Jan 16, 2026. It is now read-only.
v3.0.0
Breaking
Change implementation of amimation callbacks to include boolean completed flag.
Before
textfield.setTitleVisible(false, animated: true) {
// Perform callback actions
}Now
textfield.setTitleVisible(false, animated: true) { completed in
// Perform callback actions using completed flag
}