Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cec6809

Browse files
committedDec 16, 2020
[Rally] Adds names to arguments
Change-Id: Ia40e391c4277e9cf0623b0ac1116a209c1699212
1 parent a88a119 commit cec6809

File tree

1 file changed

+5
-1
lines changed
  • Rally/app/src/main/java/com/example/compose/rally/ui/components

1 file changed

+5
-1
lines changed
 

‎Rally/app/src/main/java/com/example/compose/rally/ui/components/TopAppBar.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,11 @@ private fun RallyTab(
8989
.selectable(
9090
selected = selected,
9191
onClick = onSelected,
92-
indication = rememberRipple(false, Dp.Unspecified, Color.Unspecified)
92+
indication = rememberRipple(
93+
bounded = false,
94+
radius = Dp.Unspecified,
95+
color = Color.Unspecified
96+
)
9397
)
9498
) {
9599
Icon(imageVector = icon, tint = tabTintColor)

0 commit comments

Comments
 (0)
Please sign in to comment.