Skip to content

v0.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 25 May 14:37
· 9 commits to main since this release

Highlights

Animated Insets 馃拑

Insetter now supports animated window insets. See the docs for more information, but the API is pretty simple:

binding.messageHolder.applyInsetter {
    // Apply the navigation bar and ime insets...
    type(navigationBars = true, ime = true) {
        // ..as padding, enabling the animation support
        padding(animated = true)
    }

    // This is optional, but it's usually necessary to sync the resulting
    // translation to other views. You can provide multiple views here.
    syncTranslationTo(binding.conversationRecyclerview)
}

[Breaking] Removed all previously deprecated API & Widgets library 馃棏

Having a clear out of old functionality.

All changes