AcaMate_iOS/AcaMate/1. View/12. Main/125. Etc/UserSettingView.swift
2025-02-13 16:05:37 +09:00

32 lines
740 B
Swift

//
// UserSettingView.swift
// AcaMate
//
// Created by TAnine on 2/13/25.
//
import SwiftUI
struct UserSettingView: View {
var body: some View {
EtcBoxView(title: "설정") {
VStack(spacing: 0){
EtcCellView(title: "정보 변경") {
// MARK: TO-DO
//
printLog("정보 변경 이동")
}
DashedDivider()
EtcCellView(title: "계정 관리") {
// MARK: TO-DO
//
printLog("계정 관리 이동")
}
}
}
}
}