Skip to content

Releases: google/accompanist

v0.11.0

02 Jun 18:02
Compare
Choose a tag to compare

Features

New Insets-UI library

You no longer need to copy InsetsAwareTopAppBar() into your projects. We now provide some commonly used layouts which support a contentPadding parameter. We also provide a copy of Scaffold which draws the content behind both the top and bottom bars, to be better support edge-to-edge use-cases.

See here for more info.

New properties for controlling the system ui

We now provide new properties for controlling the visibility of the status, navigation and system bars. See here for more information.

All changes

v0.10.0

18 May 18:55
Compare
Choose a tag to compare

Built to work with Jetpack Compose v1.0.0-beta07. Happy #googleio day! 🎉

What’s Changed

v0.9.1

08 May 16:45
78d7ac7
Compare
Choose a tag to compare

Small bug fix release. Built to work with Jetpack Compose v1.0.0-beta06

What’s Changed

v0.9.0

05 May 17:23
Compare
Choose a tag to compare

Built to work with Jetpack Compose v1.0.0-beta06

What’s Changed

v0.8.1

23 Apr 11:09
Compare
Choose a tag to compare

Small bug fix release. Built to work with Jetpack Compose v1.0.0-beta05

What’s Changed

v0.8.0

21 Apr 17:50
Compare
Choose a tag to compare

Built to work with Jetpack Compose v1.0.0-beta05

New features

Swipe Refresh

We have a new library: Swipe Refresh. This library provides a composable which behaves almost identically to Android's SwipeRefreshLayout. Check out the docs for more information.

Coil and Glide refactoring

Both the Coil and Glide integration libraries have had a huge refactoring over the past month or so. The old CoilImage() and GlideImage() are now deprecated, replaced with a painter function for each:

Image(
    painter = rememberCoilPainter("https://picsum.photos/300/300"),
    contentDescription = stringResource(R.string.image_content_desc),
    previewPlaceholder = R.drawable.placeholder,
)

Check out the updated documentation guide (Coil, Glide), as well as the migration guides (Coil, Glide). This should bring many performance improvements to the composables (more on how to come in a future blog post).

All changes

🙌 Big thanks for our contributors, as well as @nickbutcher, @ricknout, @manuelvicnt, @andkulikov & @matvei-g for the reviews.

v0.7.1

07 Apr 17:23
Compare
Choose a tag to compare

What’s Changed

v0.7.0

24 Mar 17:20
Compare
Choose a tag to compare

📢 BIG RELEASE 🚀

This is a big release for Accompanist, with not 1, but 4 new libraries:

📖 Pager & Pager Indicators

Provides paging layouts for Jetpack Compose, similar to Android's ViewPager. We have also released a sibling library which provides some simple indicators.

🍫 System UI Controller

A library which provides easy-to-use utilities for updating the System UI (status and navigation bars) colors from Jetpack Compose.

🌊 Flow layouts

A library that adds a 'flexbox'-like layout to Jetpack Compose.

New home, package and group id: com.google.accompanist

You may have also noticed that we have a new GitHub location. As part of this move, we've also updated the package name and Maven group IDs for the libraries. If you we're using the older libraries, see the Migration from dev.chrisbanes.accompanist page for more information.

What’s Changed

🙌 Big thanks to @arkon, @troyhen, @CaptnBlubber for their contributions!

v0.6.2

10 Mar 19:01
Compare
Choose a tag to compare

Built to work with Jetpack Compose v1.0.0-beta02

What’s Changed

v0.6.1

27 Feb 17:37
Compare
Choose a tag to compare

Built to work with Jetpack Compose v1.0.0-beta01

What’s Changed