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

24 lines
400 B
Swift

//
// BluetoothTips.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 8/31/23.
//
import SwiftUI
import TipKit
struct BluetoothConnectionTip: Tip {
var id: String {
return "tip.bluetooth.connect"
}
var title: Text {
Text("tip.bluetooth.connect.title")
}
var message: Text? {
Text("tip.bluetooth.connect.message")
}
var image: Image? {
Image(systemName: "flipphone")
}
}