init
This commit is contained in:
25
jason/Views/Message/MessageView.swift
Normal file
25
jason/Views/Message/MessageView.swift
Normal file
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// MessageView.swift
|
||||
// jason
|
||||
//
|
||||
// Created by Jason on 2024/1/19.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct MessageView: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
|
||||
ForEach (0 ..< 55) { item in
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
MessageView()
|
||||
}
|
||||
Reference in New Issue
Block a user