Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. struct ConversationView: View {
  2. @ObservedObject var conversation: Conversation
  3.  
  4. var body: some View {
  5. HStack {
  6. Text("Streaming?")
  7. if conversation.conversationMedia.isCurrentUserStreaming {
  8. Image(systemName: "record.circle")
  9. }
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement