Skip to content

Commit

Permalink
๐Ÿ’„ :: [#74] User
Browse files Browse the repository at this point in the history
Management Top NavigationBar ์ถ”๊ฐ€
  • Loading branch information
Xixn2 committed Jan 4, 2025
1 parent 889055f commit 0e5be46
Showing 1 changed file with 35 additions and 0 deletions.
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()
}

0 comments on commit 0e5be46

Please sign in to comment.