-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from DeveloperAcademy-POSTECH/newcase
Merge newcase to Develop
- Loading branch information
Showing
16 changed files
with
258 additions
and
117 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
45 changes: 45 additions & 0 deletions
45
MinGenie/MinGenie/Assets.xcassets/AccentColor.colorset/Contents.json
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
Binary file removed
BIN
-840 KB
MinGenie/MinGenie/Assets.xcassets/AppIcon.appiconset/AppIcon1024x1024.png
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
MinGenie/MinGenie/Assets.xcassets/AppIcon.appiconset/Contents.json
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
48 changes: 48 additions & 0 deletions
48
MinGenie/MinGenie/OnboardingViews/OnboardingNextButtonPageView.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,48 @@ | ||
// | ||
// OnboardingNextButtonPageView.swift | ||
// MinGenie | ||
// | ||
// Created by zaehorang on 5/29/24. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct OnboardingNextButtonPageView: View { | ||
let title: String | ||
let imageName: String | ||
|
||
@Binding var currentPage: Int | ||
|
||
var body: some View { | ||
VStack{ | ||
Text(title) | ||
.font(.title) | ||
.fontWeight(.bold) | ||
.foregroundStyle(Color.Text.blue) | ||
.multilineTextAlignment(.center) | ||
.lineSpacing(6) | ||
.frame(width: 300, height: 120, alignment: .bottom) | ||
.padding(EdgeInsets(top: 100, leading: 0, bottom: 40, trailing: 0)) | ||
GifImage(imageName) | ||
.aspectRatio(contentMode: .fit) | ||
.frame(width: 361, height: 200) | ||
Spacer() | ||
} | ||
|
||
VStack{ | ||
Spacer() | ||
Button { | ||
currentPage += 1 | ||
|
||
} label: { | ||
Text("다음") | ||
.fontWeight(.semibold) | ||
.foregroundColor(Color.Text.white100) | ||
.frame(width: 361, height: 50) | ||
.background(Color.Shape.black) | ||
.cornerRadius(16) | ||
.padding(.bottom, 160) | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -26,5 +26,7 @@ struct OnboardingPageView: View { | |
.frame(width: 361, height: 200) | ||
Spacer() | ||
} | ||
|
||
|
||
} | ||
} |
Oops, something went wrong.