Fixed
Status Update
Comments
vi...@google.com <vi...@google.com> #2
the same issue for SmallTopAppBar:
cc...@google.com <cc...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-main
commit 46c69840b7e4462f71a2289213f2771ae7702c9f
Author: Shalom Gibly <sgibly@google.com>
Date: Wed Oct 12 16:05:59 2022
Updates medium and large top app bar background
Updates to apply the same background color to both part of the Medium or
Large top app bar.
This change also allows such a top app bar to be made transparent.
Bug: 249688556
Bug: 250838918
Test: AppBarTest passing
Relnote: "Updates Material3 Medium and Large top app bars to apply the
same background color across their entire surface, and to allow setting
overriding the default colors with transparent color values."
Change-Id: I67659d8754b953165a5b2fa3c7a5720a0976665e
M compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/AppBar.kt
https://android-review.googlesource.com/2253154
Branch: androidx-main
commit 46c69840b7e4462f71a2289213f2771ae7702c9f
Author: Shalom Gibly <sgibly@google.com>
Date: Wed Oct 12 16:05:59 2022
Updates medium and large top app bar background
Updates to apply the same background color to both part of the Medium or
Large top app bar.
This change also allows such a top app bar to be made transparent.
Bug: 249688556
Bug: 250838918
Test: AppBarTest passing
Relnote: "Updates Material3 Medium and Large top app bars to apply the
same background color across their entire surface, and to allow setting
overriding the default colors with transparent color values."
Change-Id: I67659d8754b953165a5b2fa3c7a5720a0976665e
M compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/AppBar.kt
du...@google.com <du...@google.com> #4
I encountered this issue, on what version of material 3 has this been fixed?
an...@gmail.com <an...@gmail.com> #5
This is my workaround for this issue
MaterialTheme(
colorScheme = MaterialTheme.colorScheme.copy(
//The color you want for the second top app bar
surface = MaterialTheme.colorScheme.primary
),
typography = MaterialTheme.typography
) {
LargeTopAppBar(
modifier = Modifier.background(MaterialTheme.colorScheme.primary),
title = {
Text("Wednesday")
},
)
}
du...@google.com <du...@google.com> #6
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3:1.0.1
androidx.compose.material3:material3:1.1.0-alpha02
cl...@gmail.com <cl...@gmail.com> #7
This issue is still present in material3:1.0.1 - moving to 1.1.0-beta01 fixed it for me.
du...@google.com <du...@google.com> #8
i am also getting the same issue, is there any solution for this ?
cl...@gmail.com <cl...@gmail.com> #9
Got it! Thanks.
ap...@google.com <ap...@google.com> #10
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 5ac03b4d8c4a234d8c91aecb03361d8d1b856ad3
Author: Clara F <clarafok3@gmail.com>
Date: Thu Nov 19 21:07:43 2020
[GH] A PagingSource Factory that can be invalidated
## Proposed Changes
A PagingSource Factory that stores references to PagingSources for PagingSource invalidation
## Testing
Test: ./gradlew paging:paging-common:test
This is an imported pull request fromhttps://github.com/androidx/androidx/pull/98 .
Resolves #98
Github-Pr-Head-Sha: 63d2bc166414d4b5134ba1dd5998a2a175ccbe25
GitOrigin-RevId: 037f4fe9037bd1aa255a212091f5b955fe9e4693
Fixes: 160716447
Relnote: "A new abstract class InvalidatingPagingSourceFactory has been added
with an `.invalidate()` API that forwards invalidate to all of the PagingSources
it emits"
Change-Id: Ie71fc1cc974dbc72f42572234ea9053e31b44039
M paging/common/api/current.txt
M paging/common/api/public_plus_experimental_current.txt
M paging/common/api/restricted_current.txt
A paging/common/src/main/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt
A paging/common/src/test/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt
https://android-review.googlesource.com/1506419
Branch: androidx-master-dev
commit 5ac03b4d8c4a234d8c91aecb03361d8d1b856ad3
Author: Clara F <clarafok3@gmail.com>
Date: Thu Nov 19 21:07:43 2020
[GH] A PagingSource Factory that can be invalidated
## Proposed Changes
A PagingSource Factory that stores references to PagingSources for PagingSource invalidation
## Testing
Test: ./gradlew paging:paging-common:test
This is an imported pull request from
Resolves #98
Github-Pr-Head-Sha: 63d2bc166414d4b5134ba1dd5998a2a175ccbe25
GitOrigin-RevId: 037f4fe9037bd1aa255a212091f5b955fe9e4693
Fixes: 160716447
Relnote: "A new abstract class InvalidatingPagingSourceFactory has been added
with an `.invalidate()` API that forwards invalidate to all of the PagingSources
it emits"
Change-Id: Ie71fc1cc974dbc72f42572234ea9053e31b44039
M paging/common/api/current.txt
M paging/common/api/public_plus_experimental_current.txt
M paging/common/api/restricted_current.txt
A paging/common/src/main/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt
A paging/common/src/test/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt
Description
Artifact used: androidx.paging:paging-runtime & rxjava2 Version used: 3.0.0-alpha02
In order to call
pagingSource.invalidate()
to deal with the user of my app deleting a row from the paged RV they're looking at, I had to do the following in my ViewModel:Then, elsewhere in the VM I have a reference to the source to call
invalidate
. This feels really, really ugly. I'm aware that I have to pass a factory intoPager
because it can get recreated, but this feels like it's not something I should really have to worry about.It's hard to say what I would prefer, which is why I imagine it's like this!
Keeping a reference to the
Pager
feels less gross than it does forPagingSource
. PerhapsPager
could internally keep a reference to the existingPagingSource
so I could just callPager.invalidate()
and it would do a similar hack internally?Very happy for better or other suggestions. Currently it feels very awkward, and it was super hard to discover that the
.invalidate()
method even existed to call!