dudu-mastodon/duduji/Core/Notification/Views/NotificationView.swift
Ching 8392e8a86e feat(View): 增加 NotificationView
增加 NotificationView

Signed-off-by: Ching <loooching@gmail.com>
2023-05-07 19:39:45 +08:00

27 lines
468 B
Swift

//
// NotificationView.swift
// duduji
//
// Created by ching on 2023/5/7.
//
import SwiftUI
struct NotificationView: View {
var body: some View {
ScrollView {
LazyVStack {
ForEach(0 ... 25, id: \.self) { _ in
NotificationRow()
}
}
}
}
}
struct NotificationView_Previews: PreviewProvider {
static var previews: some View {
NotificationView()
}
}