-
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.
Management Top NavigationBar ์ถ๊ฐ
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
Projects/App/Sources/Feature/UserManagementFeature/Sources/UserManagementView.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,35 @@ | ||
// | ||
// UserManagementView.swift | ||
// Expo-iOS | ||
// | ||
// Created by ์์ง์ on 1/5/25. | ||
// Copyright ยฉ 2025 SchoolofCompany. All rights reserved. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct UserManagementView: View { | ||
@Environment(\.dismiss) var dismiss | ||
|
||
var body: some View { | ||
ZStack { | ||
HStack(spacing: 0) { | ||
Button { | ||
dismiss() | ||
} label: { | ||
ExpoIOSAsset.Assets.leftBackButton.swiftUIImage | ||
.padding(.leading, 4) | ||
} | ||
|
||
Spacer() | ||
} | ||
|
||
Text("์ฐธ๊ฐ์ ๊ด๋ฆฌ") | ||
.expoFont(.body1R) | ||
} | ||
} | ||
} | ||
|
||
#Preview { | ||
UserManagementView() | ||
} |