EventDetailView placeholder
we'll use this view for when click into an event Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
22
damus/Views/EventDetailView.swift
Normal file
22
damus/Views/EventDetailView.swift
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// ThreadView.swift
|
||||
// damus
|
||||
//
|
||||
// Created by William Casarin on 2022-04-16.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct EventDetailView: View {
|
||||
let event: NostrEvent
|
||||
|
||||
var body: some View {
|
||||
Text("EventDetailView")
|
||||
}
|
||||
}
|
||||
|
||||
struct EventDetailView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
EventDetailView(event: NostrEvent(content: "Hello", pubkey: "Guy"))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user