Meshtastic-Apple/Meshtastic/Tips/BluetoothTips.swift
Garth Vander Houwen 365699d1d4 fix typo
2025-06-20 07:12:54 -07:00

24 lines
506 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("Connected Radio")
}
var message: Text? {
Text("Shows information for the Lora radio connected via bluetooth. You can swipe left to disconnect the radio and long press to start the live activity.")
}
var image: Image? {
Image(systemName: "flipphone")
}
}