mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
24 lines
503 B
Swift
24 lines
503 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 start the live activity.")
|
|
}
|
|
var image: Image? {
|
|
Image(systemName: "flipphone")
|
|
}
|
|
}
|