Skip to content

Instantly share code, notes, and snippets.

@NitroG42
NitroG42 / composetips.md
Last active August 23, 2022 09:52
Useful Compose links/tips

Do a LazyList with a custom background (like a big rounded square)

https://gist.github.com/micHar/3926308e9467bac806f15f615b8a9c72

Summary

Each items has a different background (mainly first, last, remaining items share the same). It's the same than with recyclerview but here in compose the use of modifiers makes it really simple.

Andrey Kulikov samples