generated from GSM-MSG/MSG-Repository-Generator
-
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.
♻️ :: [#391] SchoolListResponseDTO / Departments Type [String]으로 수정
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
App/Sources/Feature/InputSchoolFeature/Source/Component/CreatedSchoolSuccessView.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,29 @@ | ||
import SwiftUI | ||
|
||
struct CreatedClubSuccessView: View { | ||
let dismiss: () -> Void | ||
|
||
var body: some View { | ||
VStack { | ||
BitgouelAsset.Icons.check.swiftUIImage | ||
.padding(.top, 233) | ||
|
||
Text("학교 등록 완료") | ||
.bitgouelFont(.title2) | ||
.padding(.top, 24) | ||
|
||
Text("새 학교를 등록했습니다.") | ||
.bitgouelFont(.text3, color: .greyscale(.g4)) | ||
|
||
BitgouelButton( | ||
text: "돌아가기" | ||
) { | ||
dismiss() | ||
} | ||
.cornerRadius(8) | ||
.padding(.horizontal, 28) | ||
.padding(.bottom, 46) | ||
} | ||
.navigationBarBackButtonHidden(true) | ||
} | ||
} |
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