Status Update
Comments
so...@google.com <so...@google.com>
ph...@gmail.com <ph...@gmail.com> #3
Hi,
Thank you for quick response. Yes, I actually copied curl code above from the API explorer.
I also tried with Python code below:
request = youtube.search().list(
part="snippet",
maxResults=50,
order="viewCount",
publishedAfter="2024-09-01T00:00:00Z",
q="artificial intelligence",
videoPaidProductPlacement="true",
)
response = request.execute()
return response
This also gave me invalid parameter error:
TypeError: Got an unexpected keyword argument videoPaidProductPlacement
ap...@google.com <ap...@google.com> #4
Hello,
I wanted to check if there are any updates regarding this issue, as it is critical for my application. Could you share whether it's planned to be resolved and if there is an estimated timeline for a fix?
I would greatly appreciate any insights you can provide.
Thank you for your time and support.
sg...@google.com <sg...@google.com> #5
ja...@gmail.com <ja...@gmail.com> #6
Still broken. Version 1.3.1
sh...@gmail.com <sh...@gmail.com> #7
The same issue happens for me with androidx.compose.material3:material3:1.1.0-alpha04
, button doesn't appear with default animations for AnimatedVisibility
, but it works when using scaleIn/scaleOut animations instead
pa...@gmail.com <pa...@gmail.com> #8
I'm still having this issue with androidx.compose.material3:material3:1.1.0-beta02
. Default animations don't work at all, i.e. nothing gets shown. Fade animations get clipped. Scale animations seem to work fine.
jo...@asos.com <jo...@asos.com> #9
co...@google.com <co...@google.com>
pe...@gmail.com <pe...@gmail.com> #10
te...@gmail.com <te...@gmail.com> #11
mi...@gmail.com <mi...@gmail.com> #12
This issue is still occurring in androidx.compose:compose-bom:2023.10.01
an...@gmail.com <an...@gmail.com> #13
I am also experiencing this issue in 2023.10.01
.
As mentioned in the original issue, setting enter = scaleIn()
and exit = scaleOut()
on the AnimatedVisibility
seems to fix the issue, but does not work as a solution when there is more than one FAB (primary extended and secondary small FAB).
ph...@bayf.net <ph...@bayf.net> #14
Still happening with 2024.03.00
ja...@billease.com <ja...@billease.com> #15
mi...@gmail.com <mi...@gmail.com> #16
mc...@solem.fr <mc...@solem.fr> #17
Still reproducing as today.
Animation androidx.compose.animation:animation:1.7.0-beta06
Foundation androidx.compose.foundation:foundation:1.7.0-beta06
pa...@outlook.com <pa...@outlook.com> #18
2025 and still happening
Description
Jetpack Compose release version: 1.1.1 & 1.2.0-alpha04
With some animation types, including
AnimatedVisibility
default ones, the view doesn't appear at all.ScaleIn/out works fine.
If I put
AnimatedVisibility
in aBox(Modifier.size(FabSize))
, it works almost fine, expect the shadow - it's being clipped during animation until the final frame.