Ntrip beállítások sheet, ntrip státusz sheet

This commit is contained in:
2026-07-05 15:48:33 +02:00
parent fa25a320eb
commit 2bd39fbd4e
6 changed files with 629 additions and 42 deletions
@@ -157,7 +157,7 @@ class NtripSettingsSheet extends GetView<NtripSettingsController> {
contentPadding: EdgeInsets.zero,
title: const Text('Automatikus kapcsolódás'),
subtitle: const Text(
'Az app indításakor próbáljon NTRIP-re kapcsolódni.',
'RTK képes vevő csatlakozásakor próbáljon automatikusan NTRIP-re kapcsolódni.',
),
value: controller.autoConnect.value,
onChanged: (value) {
@@ -216,6 +216,15 @@ class NtripSettingsSheet extends GetView<NtripSettingsController> {
child: const Text('Csak mentés'),
),
),
SizedBox(
width: double.infinity,
child: Obx(() => OutlinedButton.icon(
onPressed: controller.isBusy.value
? null
: controller.testConnection,
icon: const Icon(Icons.network_check, size: 18),
label: const Text(
'Kapcsolat tesztelése (vevő nélkül)'))))
],
),
),