Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

v3.0.0

Choose a tag to compare

@k0nserv k0nserv released this 07 Mar 11:21

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
}

See (#112)[https://github.com//pull/112]