Skip to content

Commit 3067440

Browse files
Treehugger RobotGerrit Code Review
authored andcommitted
Merge "Remove code that break androidx build." into main
2 parents 38cb016 + d6a50f2 commit 3067440

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

libs/bufferstreams/examples/app/java/com/android/graphics/bufferstreamsdemoapp/BufferDemosAppBar.kt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.android.graphics.bufferstreamsdemoapp
22

3-
import androidx.compose.material.icons.Icons
4-
import androidx.compose.material.icons.automirrored.filled.ArrowBack
53
import androidx.compose.material3.Icon
64
import androidx.compose.material3.IconButton
75
import androidx.compose.material3.MaterialTheme
@@ -29,10 +27,11 @@ fun BufferDemosAppBar(
2927
navigationIcon = {
3028
if (canNavigateBack) {
3129
IconButton(onClick = navigateUp) {
32-
Icon(
33-
imageVector = Icons.AutoMirrored.Filled.ArrowBack,
34-
contentDescription = stringResource(R.string.back_button)
35-
)
30+
// b/355293776
31+
// Icon(
32+
// imageVector = Icons.AutoMirrored.Filled.ArrowBack,
33+
// contentDescription = stringResource(R.string.back_button)
34+
// )
3635
}
3736
}
3837
}

0 commit comments

Comments
 (0)