commit | 5cfb978785d531b6f52cfc38abc87574adfe570e | [log] [tgz] |
---|---|---|
author | Lucas Silva <lusilva@google.com> | Wed Jun 12 15:25:02 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Jun 12 15:25:02 2024 +0000 |
tree | 1d6f9b6c368919081e61068a43835c49909692f1 | |
parent | da06dfe00bb75782c93a983113660c9bb68c6ef9 [diff] | |
parent | 07729848b76955f88f85bc63f80442b9cdf4fbd5 [diff] |
Merge "Update hub background animation" into main
diff --git a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt index a1f8f1b..c63389b 100644 --- a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt +++ b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt
@@ -252,7 +252,10 @@ Box( Modifier.matchParentSize() .background(colors.primary) - .animatedRadialGradientBackground(colors.primary, colors.primaryContainer) + .animatedRadialGradientBackground( + toColor = colors.primary, + fromColor = colors.primaryContainer.copy(alpha = 0.6f) + ) ) BackgroundTopScrim() }