Meshtastic-Apple/Meshtastic/Tips/MessagesTips.swift

25 lines
404 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 {
2023-09-15 19:20:45 -07:00
Text("tip.messages.title")
2023-09-15 18:40:52 -07:00
}
var message: Text? {
2023-09-15 19:20:45 -07:00
Text("tip.messages.message")
2023-09-15 18:40:52 -07:00
}
var image: Image? {
Image(systemName: "bubble.left.and.bubble.right")
}
}