// // 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") } }