2023-08-31 22:39:51 -07:00
|
|
|
//
|
|
|
|
|
// BluetoothTips.swift
|
|
|
|
|
// Meshtastic
|
|
|
|
|
//
|
|
|
|
|
// Copyright(c) Garth Vander Houwen 8/31/23.
|
|
|
|
|
//
|
|
|
|
|
import SwiftUI
|
|
|
|
|
import TipKit
|
|
|
|
|
|
|
|
|
|
struct BluetoothConnectionTip: Tip {
|
|
|
|
|
|
|
|
|
|
var id: String {
|
2023-09-15 19:20:45 -07:00
|
|
|
return "tip.bluetooth.connect"
|
2023-08-31 22:39:51 -07:00
|
|
|
}
|
|
|
|
|
var title: Text {
|
2023-09-15 19:20:45 -07:00
|
|
|
Text("tip.bluetooth.connect.title")
|
2023-08-31 22:39:51 -07:00
|
|
|
}
|
|
|
|
|
var message: Text? {
|
2023-09-15 19:20:45 -07:00
|
|
|
Text("tip.bluetooth.connect.message")
|
2023-08-31 22:39:51 -07:00
|
|
|
}
|
|
|
|
|
var image: Image? {
|
2023-09-17 19:42:03 -07:00
|
|
|
Image(systemName: "flipphone")
|
2023-08-31 22:39:51 -07:00
|
|
|
}
|
|
|
|
|
}
|