mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
24 lines
394 B
Swift
24 lines
394 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("Messages")
|
|
}
|
|
var message: Text? {
|
|
Text("tip.messages.message")
|
|
}
|
|
var image: Image? {
|
|
Image(systemName: "bubble.left.and.bubble.right")
|
|
}
|
|
}
|