forked from Team-LionHeart/LionHeart-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MERGE] 1차 내부 QA (Team-LionHeart#113)
- Loading branch information
Showing
9 changed files
with
105 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
LionHeart-iOS/LionHeart-iOS/Scenes/Curriculum/Model/CurriculumWeekBackgroundDummy.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// | ||
// CurriculumWeekBackgroundDummy.swift | ||
// LionHeart-iOS | ||
// | ||
// Created by 김민재 on 2023/07/21. | ||
// | ||
|
||
import UIKit | ||
|
||
struct WeekBackgroundImage: AppData { | ||
let weekBackgroundImage: UIImage | ||
} | ||
|
||
extension WeekBackgroundImage { | ||
static func dummy() -> [WeekBackgroundImage] { | ||
return [WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week4Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week5Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week6Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week7Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week8Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week9Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week10Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week11Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week12Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week13Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week14Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week15Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week16Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week17Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week18Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week19Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week20Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week21Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week22Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week23Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week24Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week25Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week26Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week27Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week28Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week29Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week30Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week31Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week32Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week33Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week34Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week35Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week36Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week37Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week38Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week39Image), | ||
WeekBackgroundImage(weekBackgroundImage: ImageLiterals.Curriculum.week40Image) | ||
|
||
|
||
|
||
] | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters