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
}