Fixed
Status Update
Comments
pa...@google.com <pa...@google.com>
wo...@gmail.com <wo...@gmail.com> #2
Is there any updates? This is a big problem!
lo...@gmail.com <lo...@gmail.com> #3
Hi there - could you provide more context on the issue & a sample project to reproduce? Database locked exceptions are quite difficult to pinpoint without a repro project. Thanks!
ap...@google.com <ap...@google.com> #4
Hi. It is reproduceable on some users by using this code:
suspend fun <R> MyDatabase.workaroundWithTransaction(block: suspend TransactionScope<R>.() -> R) {
useWriterConnection {
it.immediateTransaction(block)
}
// TODO: Temporally fix https://issuetracker.google.com/issues/340606803#comment2
// Manually triggers invalidation
invalidationTracker.refreshAsync()
}
[Deleted User] <[Deleted User]> #6
Hi. Please merge the pull request. This is big problem!
an...@google.com <an...@google.com> #7
Hi. Is there any updates on this problem?
Description
I have a
LazyRow
ofCard
s.Now
LazyRow
creates as aLazyList
which creates aSubcomposeLayout
which has `clipToBounds() in it's modifiers set.This leads to
LazyRow
clipping the shadows of cards. As a workaround I can create enough content padding. This is however a suboptimal solution because that makes it harder to position other elements in relation to that LazyRow composable as it's bottom / top now do not start at the bottom / top of the cards.It would be great if you could find a way such that
LazyRow
/LazyColumn
would not clip it's children.Tested on compose beta 5.