Meshtastic-Apple/Meshtastic/Tips/MessagesTips.swift

25 lines
569 B
Swift
Raw Normal View History

2023-09-15 18:40:52 -07:00
//
// MessagesTips.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 9/15/23.
//
import SwiftUI
import TipKit
struct MessagesTip: Tip {
var id: String {
2023-09-15 19:20:45 -07:00
return "tip.messages"
2023-09-15 18:40:52 -07:00
}
var title: Text {
2025-04-27 09:57:49 -07:00
Text("Messages")
2023-09-15 18:40:52 -07:00
}
var message: Text? {
2025-05-08 08:59:24 -07:00
Text("You can send and receive channel (group chats) and direct messages. From any message you can long press to see available actions like copy, reply, tapback and delete as well as delivery details.")
2023-09-15 18:40:52 -07:00
}
var image: Image? {
Image(systemName: "bubble.left.and.bubble.right")
}
}