init
This commit is contained in:
24
jason/Views/Explore/ExploreView.swift
Normal file
24
jason/Views/Explore/ExploreView.swift
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// ExploreView.swift
|
||||
// jason
|
||||
//
|
||||
// Created by Jason on 2024/1/16.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ExploreView: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
VStack (alignment: .leading) {
|
||||
UserCardComponent()
|
||||
Text("item")
|
||||
}
|
||||
}
|
||||
.background(Color.green)
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
ExploreView()
|
||||
}
|
||||
Reference in New Issue
Block a user