@@ -16,8 +16,7 @@ import androidx.compose.foundation.pager.VerticalPager
16
16
import androidx.compose.foundation.pager.rememberPagerState
17
17
import androidx.compose.foundation.shape.CircleShape
18
18
import androidx.compose.material.icons.Icons
19
- import androidx.compose.material.icons.automirrored.filled.ArrowBackIos
20
- import androidx.compose.material.icons.automirrored.filled.ArrowForwardIos
19
+ import androidx.compose.material.icons.automirrored.rounded.ArrowBackIos
21
20
import androidx.compose.material.icons.automirrored.rounded.ArrowForwardIos
22
21
import androidx.compose.material3.Card
23
22
import androidx.compose.material3.Icon
@@ -223,7 +222,8 @@ fun SlideImagePager(
223
222
) {
224
223
Icon (
225
224
imageVector = Icons .AutoMirrored .Rounded .ArrowForwardIos ,
226
- contentDescription = stringResource(Res .string.forward)
225
+ contentDescription = stringResource(Res .string.forward),
226
+ tint = Color .Black .copy(0.6f )
227
227
)
228
228
}
229
229
}
@@ -246,8 +246,9 @@ fun SlideImagePager(
246
246
modifier = Modifier .padding(30 .dp).focusable().background(Color .Gray .copy(0.5f ), shape = CircleShape )
247
247
) {
248
248
Icon (
249
- imageVector = Icons .AutoMirrored .Filled .ArrowBackIos ,
250
- contentDescription = stringResource(Res .string.backward)
249
+ imageVector = Icons .AutoMirrored .Rounded .ArrowBackIos ,
250
+ contentDescription = stringResource(Res .string.backward),
251
+ tint = Color .Black .copy(0.6f )
251
252
)
252
253
}
253
254
}
0 commit comments