SkyFloatingLabelTextField v3.0.0 Release Notes

  • ๐Ÿ’ฅ 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