feat: 인기 게시물 배지 UI 추가

- 오렌지색 인기 배지 추가 (Whatshot 아이콘)
- 키워드 매칭 배지와 동일한 스타일 적용

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
sanjeok77
2026-03-11 21:39:29 +09:00
parent fd58995802
commit 24d05dab7d

View File

@@ -161,7 +161,37 @@ fun DealItem(
}
}
Spacer(modifier = Modifier.width(4.dp))
}
}
// 인기/핫 배지 - 인기 게시물
if (deal.isPopular) {
Surface(
shape = RoundedCornerShape(10.dp),
color = Color(0xFFFF6B35), // 오렌지색
modifier = Modifier.height(24.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(4.dp),
modifier = Modifier.padding(horizontal = 10.dp)
) {
Icon(
imageVector = Icons.Filled.Whatshot,
contentDescription = null,
tint = Color.White,
modifier = Modifier.size(12.dp)
)
Text(
text = "인기",
style = MaterialTheme.typography.labelSmall.copy(
fontWeight = FontWeight.SemiBold,
fontSize = 11.sp
),
color = Color.White
)
}
}
}
// 액션 버튼들 - 더 작고 세련된 스타일
Row(