Skip to content

Commit

Permalink
[Chore] :: combined widget 시간표 UI 디자인이랑 다른부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
khs3994 committed Nov 12, 2024
1 parent 94c3458 commit b9aa823
Showing 1 changed file with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,20 @@ class CombinedWidget : GlanceAppWidget() {
) + "..." else item

Column {
SuitText(
text = text,
color = GlanceTheme.colors.tertiary.getColor(context),
fontSize = 14.sp
)
Row(verticalAlignment = Alignment.CenterVertically) {
SuitText(
modifier = GlanceModifier.width(12.dp),
text = "${index + 1}",
color = GlanceTheme.colors.secondary.getColor(context),
fontSize = 14.sp,
)
Spacer(modifier = GlanceModifier.width(2.dp))
SuitText(
text = text,
color = GlanceTheme.colors.tertiary.getColor(context),
fontSize = 14.sp,
)
}
if (mealList.lastIndex != index) {
Spacer(modifier = GlanceModifier.height(1.37.dp))
}
Expand Down

0 comments on commit b9aa823

Please sign in to comment.