Files
swift-study/demo/Components/UserAccountCard.swift
2024-01-24 18:02:39 +08:00

26 lines
479 B
Swift

//
// UserAccountCard.swift
// demo
//
// Created by Jason on 2024/1/24.
//
import SwiftUI
struct UserAccountCard: View {
var model: UserAccountCardModel
var body: some View {
VStack {
HStack {
Image(systemName: model.icon)
Text(model.title)
}
Text(model.info)
.font(.caption)
}
.padding(12)
.background(Color.white)
.cornerRadius(8)
}
}