Skip to content

Commit c010e35

Browse files
committed
Feat: RoutineDetailView UI 구현 (#T3-130)
1 parent 13f39fd commit c010e35

28 files changed

Lines changed: 519 additions & 15 deletions

File tree

Projects/Domain/Sources/Entity/RoutineEntity.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public struct RoutineEntity {
99
public let routineId: String
1010
public let historySeq: Int
1111
public let routineName: String
12-
public let repeatDay: [String]?
12+
public let repeatDay: [String]
1313
public let executionTime: String
1414
public let subRoutineSearchResultDto: [SubRoutineEntity]
1515
public let modifiedYn: Bool
@@ -32,7 +32,7 @@ public struct RoutineEntity {
3232
self.routineId = routineId
3333
self.historySeq = historySeq
3434
self.routineName = routineName
35-
self.repeatDay = repeatDay
35+
self.repeatDay = repeatDay ?? []
3636
self.executionTime = executionTime
3737
self.subRoutineSearchResultDto = subRoutineSearchResultDto
3838
self.modifiedYn = modifiedYn
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "edit_icon.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"filename" : "edit_icon@2x.png",
10+
"idiom" : "universal",
11+
"scale" : "2x"
12+
},
13+
{
14+
"filename" : "edit_icon@3x.png",
15+
"idiom" : "universal",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"author" : "xcode",
21+
"version" : 1
22+
}
23+
}
392 Bytes
Loading
613 Bytes
Loading
866 Bytes
Loading
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "repeat_icon.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"filename" : "repeat_icon@2x.png",
10+
"idiom" : "universal",
11+
"scale" : "2x"
12+
},
13+
{
14+
"filename" : "repeat_icon@3x.png",
15+
"idiom" : "universal",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"author" : "xcode",
21+
"version" : 1
22+
}
23+
}
555 Bytes
Loading
1000 Bytes
Loading
1.45 KB
Loading
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "routine_icon.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"filename" : "routine_icon@2x.png",
10+
"idiom" : "universal",
11+
"scale" : "2x"
12+
},
13+
{
14+
"filename" : "routine_icon@3x.png",
15+
"idiom" : "universal",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"author" : "xcode",
21+
"version" : 1
22+
}
23+
}

0 commit comments

Comments
 (0)