mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
27 lines
465 B
Swift
27 lines
465 B
Swift
//
|
|
// BluetoothTips.swift
|
|
// Meshtastic
|
|
//
|
|
// Copyright(c) Garth Vander Houwen 8/31/23.
|
|
//
|
|
import SwiftUI
|
|
#if canImport(TipKit)
|
|
import TipKit
|
|
#endif
|
|
|
|
@available(iOS 17.0, macOS 14.0, *)
|
|
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")
|
|
}
|
|
}
|