From e3eba0bfc1bcb2b1460765f817a95821b9f774b3 Mon Sep 17 00:00:00 2001 From: Yandrik Date: Tue, 28 Apr 2026 20:13:18 +0200 Subject: [PATCH] chore: refine ios pairing recovery copy --- lib/util/bluetooth_settings.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/bluetooth_settings.dart b/lib/util/bluetooth_settings.dart index bcd5d2b..974bce9 100644 --- a/lib/util/bluetooth_settings.dart +++ b/lib/util/bluetooth_settings.dart @@ -21,7 +21,7 @@ Future openBluetoothSettings() async { Future showBluetoothPairingRecoveryDialog(BuildContext context) { final isIOS = Platform.isIOS; final content = isIOS - ? 'The connection opened, then broke while reading the device. This is probably a pairing problem.\n\nOn iOS, open Settings, go to Bluetooth, forget this device, then come back and connect again.' + ? 'The connection opened, then broke while reading the device. This is probably a pairing problem.\n\nGo to Settings, then Bluetooth, then forget this device. After that, come back and connect again.\n\nOr press Open Settings below. From the app settings page, press Back twice to reach Bluetooth settings, then forget this device.' : 'The connection opened, then broke while reading the device. This is probably a pairing problem.\n\nOpen Bluetooth settings, remove/forget this device, then come back and connect again.'; final settingsButtonLabel = isIOS ? 'Open Settings' : 'Open Bluetooth settings';