mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
31 lines
592 B
Swift
31 lines
592 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct AppSettings: View {
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
|
|
GeometryReader { bounds in
|
|
|
|
NavigationLink(destination: Messages()) {
|
|
|
|
List{
|
|
|
|
}
|
|
}
|
|
}
|
|
.navigationTitle("App Settings")
|
|
}
|
|
}
|
|
}
|
|
|
|
struct AppSettings_Previews: PreviewProvider {
|
|
static let meshData = MeshData()
|
|
|
|
static var previews: some View {
|
|
Group {
|
|
AppSettings()
|
|
}
|
|
}
|
|
}
|