Meshtastic-Apple/Meshtastic/Tips/MessagesTips.swift
Garth Vander Houwen e1ec14db2c Upgrade to ios 17
2024-10-04 19:36:30 -07:00

24 lines
404 B
Swift

//
// MessagesTips.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 9/15/23.
//
import SwiftUI
import TipKit
struct MessagesTip: Tip {
var id: String {
return "tip.messages"
}
var title: Text {
Text("tip.messages.title")
}
var message: Text? {
Text("tip.messages.message")
}
var image: Image? {
Image(systemName: "bubble.left.and.bubble.right")
}
}