app-starlock/lib/mine/mineSet/google_home/google_home_state.dart
2024-09-11 10:43:59 +08:00

19 lines
421 B
Dart

import 'package:get/get.dart';
class GoogleHomeState {
GoogleHomeState() {
final Map map = Get.arguments;
if (map['isGoogleHome'] != null) {
isGoogleHome.value = map['isGoogleHome'];
if (isGoogleHome.value) {
isOpenedText.value = '关闭';
} else {
isOpenedText.value = '开启';
}
}
}
RxBool isGoogleHome = false.obs;
RxString isOpenedText = '开启'.obs;
}