27 lines
468 B
Swift
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()
|
|
}
|
|
}
|