Skip to content

Commit

Permalink
[FEATURE]#74 : setting icon 왼쪽 패딩 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Aug 6, 2024
1 parent 4e604f7 commit b30a377
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ internal fun EntireScreen(
navigateUp = { navigator.navigateUp() },
action = {
Icon(
modifier = Modifier.clickable { navigator.navigateToSetting() },
imageVector = ImageVector.vectorResource(R.drawable.setting),
modifier = Modifier
.clickable { navigator.navigateToSetting() }
.padding(end = 16.dp),
imageVector = ImageVector.vectorResource(R.drawable.ic_setting),
contentDescription = stringResource(R.string.setting_icon),
tint = WeSpotThemeManager.colors.secondaryBtnColor,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ fun SettingScreen(
navigateUp = { navigator.navigateUp() },
action = {
Icon(
modifier = Modifier.clickable { navigator.navigateToNotificationSetting() },
imageVector = ImageVector.vectorResource(R.drawable.setting),
modifier = Modifier
.padding(end = 16.dp)
.clickable { navigator.navigateToNotificationSetting() },
imageVector = ImageVector.vectorResource(R.drawable.ic_setting),
contentDescription = stringResource(R.string.setting_icon),
tint = WeSpotThemeManager.colors.secondaryBtnColor,
)
Expand Down

0 comments on commit b30a377

Please sign in to comment.