mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
26 lines
517 B
Swift
26 lines
517 B
Swift
//
|
|
// Onboarding.swift
|
|
// Meshtastic
|
|
//
|
|
// Copyright(c) Garth Vander Houwen 8/21/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct Onboarding: View {
|
|
|
|
var body: some View {
|
|
|
|
VStack {
|
|
|
|
Text("🗺️ Set Your Region to Mesh and Message")
|
|
.font(.largeTitle)
|
|
.foregroundColor(.red)
|
|
|
|
Text("Your region is currently set to UNSET, please set your device to the appropriate region under Settings > LoRa, after you set your region your Meshtastic device will reboot.")
|
|
.font(.callout)
|
|
.padding()
|
|
|
|
}
|
|
}
|
|
}
|