Adds getting/sending messages
This commit is contained in:
21
kordophone2/ConversationView.swift
Normal file
21
kordophone2/ConversationView.swift
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// ConversationView.swift
|
||||
// kordophone2
|
||||
//
|
||||
// Created by James Magahern on 8/24/25.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ConversationView: View
|
||||
{
|
||||
@Binding var transcriptModel: ChatTranscriptView.ViewModel
|
||||
@Binding var entryModel: MessageEntryView.ViewModel
|
||||
|
||||
var body: some View {
|
||||
VStack {
|
||||
ChatTranscriptView(model: $transcriptModel)
|
||||
MessageEntryView(viewModel: $entryModel)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user