Ntrip beállítások sheet, ntrip státusz sheet
This commit is contained in:
@@ -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)'))))
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user