2023-08-31 22:39:51 -07:00
//
// B l u e t o o t h T i p s . s w i f t
// M e s h t a s t i c
//
// C o p y r i g h t ( c ) G a r t h V a n d e r H o u w e n 8 / 3 1 / 2 3 .
//
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 {
2025-04-01 09:32:51 -07:00
Text ( " Connected Radio " )
2023-08-31 22:39:51 -07:00
}
var message : Text ? {
2025-04-01 09:32:51 -07:00
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. " )
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
}
}