Files
bitchat/bitchat/_PreviewHelpers/BitchatMessage+Preview.swift
T
IslamandGitHub 81c90b2924 Extract TextMessageView into a separate file (#759)
* Extract `TextMessageView` into a separate file

* Remove dead code
2025-10-06 17:42:06 +02:00

28 lines
664 B
Swift

//
// BitchatMessage+Preview.swift
// bitchat
//
// This is free and unencumbered software released into the public domain.
// For more information, see <https://unlicense.org>
//
import Foundation
extension BitchatMessage {
static var preview: BitchatMessage {
BitchatMessage(
id: UUID().uuidString,
sender: "John Doe",
content: "Hello",
timestamp: Date(),
isRelay: false,
originalSender: nil,
isPrivate: false,
recipientNickname: "Jane Doe",
senderPeerID: nil,
mentions: nil,
deliveryStatus: .sent
)
}
}