diff --git a/Meshtastic/Views/Nodes/NodeDetail.swift b/Meshtastic/Views/Nodes/NodeDetail.swift index fc73b616..7b52ebae 100644 --- a/Meshtastic/Views/Nodes/NodeDetail.swift +++ b/Meshtastic/Views/Nodes/NodeDetail.swift @@ -23,7 +23,7 @@ struct NodeDetail: View { let hwModelString = node.user?.hwModel ?? "UNSET" - HStack { + ZStack { GeometryReader { bounds in @@ -64,10 +64,10 @@ struct NodeDetail: View { ) } .ignoresSafeArea(.all, edges: [.leading, .trailing]) - .frame(idealWidth: bounds.size.width, minHeight: bounds.size.height / 2) + .frame(idealWidth: bounds.size.width, minHeight: bounds.size.height / 1.75) } } - //Text("\(mostRecent.satsInView)") + Text("Sats: \(mostRecent.satsInView)").offset( y:-40) } else { Image(node.user?.hwModel ?? "UNSET") @@ -432,6 +432,7 @@ struct NodeDetail: View { .frame(minHeight:170) .padding(0) } + .offset( y:-40) } .edgesIgnoringSafeArea([.leading, .trailing]) } diff --git a/Meshtastic/Views/Nodes/NodeList.swift b/Meshtastic/Views/Nodes/NodeList.swift index 58863a51..f9b1d24e 100644 --- a/Meshtastic/Views/Nodes/NodeList.swift +++ b/Meshtastic/Views/Nodes/NodeList.swift @@ -87,15 +87,9 @@ struct NodeList: View { Image(systemName: "clock.badge.checkmark.fill").font(.title3) .foregroundColor(.accentColor).symbolRenderingMode(.hierarchical) - - if UIDevice.current.userInterfaceIdiom == .pad || UIDevice.current.userInterfaceIdiom == .mac { LastHeardText(lastHeard: node.lastHeard).font(.subheadline).foregroundColor(.gray) - - } else { - - LastHeardText(lastHeard: node.lastHeard).font(.title3).foregroundColor(.gray) - } + } if node.positions?.count ?? 0 > 0 && (bleManager.connectedPeripheral != nil && bleManager.connectedPeripheral.num != node.num) { diff --git a/Meshtastic/Views/Settings/Config/BluetoothConfig.swift b/Meshtastic/Views/Settings/Config/BluetoothConfig.swift index e75e4f1d..a67dcf66 100644 --- a/Meshtastic/Views/Settings/Config/BluetoothConfig.swift +++ b/Meshtastic/Views/Settings/Config/BluetoothConfig.swift @@ -120,7 +120,7 @@ struct BluetoothConfig: View { } } } - .navigationTitle("Display Config") + .navigationTitle("Bluetooth (BLE) Config") .navigationBarItems(trailing: ZStack {