18 lines
496 B
Dart
18 lines
496 B
Dart
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
class GatewayGetWifiListState{
|
|
GatewayGetWifiListState() {
|
|
var map = Get.arguments;
|
|
if (map['macAddress'] != null && map['macAddress'] != '') {
|
|
macAddress = map['macAddress'];
|
|
}
|
|
}
|
|
|
|
final RxList<Map<String, String>> wifiNameDataList = <Map<String, String>>[].obs;
|
|
|
|
String macAddress = '';
|
|
RxBool ifCurrentScreen = true.obs; // 是否是当前界面,用于判断是否需要针对当前界面进行展示
|
|
RxInt sureBtnState = 0.obs;
|
|
} |