Swift UI Notification View
struct NotificationCard: View {
var body: some View {
VStack(alignment: .leading, spacing: 4) {
HStack {
Image("app_icon").resizable().frame(width: 20, height: 20)
Text("MESSAGES").font(.caption2).fontWeight(.semibold)
Spacer()
Text("2m ago").font(.caption2)
}
Text("John Doe").fontWeight(.bold)
Text("Hey! Are we still meeting at 5?").lineLimit(2)
}
.padding()
.background(.ultraThinMaterial)
.cornerRadius(20)
}
}