|
...
|
...
|
@@ -151,9 +151,7 @@ class CustomWatchThemePreviewController extends GetxController { |
|
|
|
device = null;
|
|
|
|
watchConnectErrorDesc.value = e.toString();
|
|
|
|
}
|
|
|
|
if (device?.isPaired != true ||
|
|
|
|
device?.isReachable != true ||
|
|
|
|
device?.isWatchAppInstalled != true) {
|
|
|
|
if (device?.isPaired != true) {
|
|
|
|
await Get.dialog<void>(
|
|
|
|
const WatchThemeNoWatchDialog(),
|
|
|
|
barrierColor: const Color(0xB3000000),
|
|
...
|
...
|
@@ -177,9 +175,7 @@ class CustomWatchThemePreviewController extends GetxController { |
|
|
|
device = null;
|
|
|
|
watchConnectErrorDesc.value = e.toString();
|
|
|
|
}
|
|
|
|
if (device?.isPaired != true ||
|
|
|
|
device?.isReachable != true ||
|
|
|
|
device?.isWatchAppInstalled != true) {
|
|
|
|
if (device?.isPaired != true) {
|
|
|
|
await Get.dialog<void>(
|
|
|
|
const WatchThemeNoWatchDialog(),
|
|
|
|
barrierColor: const Color(0xB3000000),
|
...
|
...
|
|