2024-09-14 16:31:45 +08:00
|
|
|
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
2024-12-13 10:59:42 +08:00
|
|
|
class SelectGatewayListState {
|
2024-09-14 16:31:45 +08:00
|
|
|
RxList<ScanResult> devices = <ScanResult>[].obs;
|
2024-10-07 14:17:46 +08:00
|
|
|
|
|
|
|
|
RxBool ifCurrentScreen = true.obs; // 是否是当前界面,用于判断是否需要针对当前界面进行展示
|
2024-12-13 10:59:42 +08:00
|
|
|
ScanResult? currentDevice;
|
|
|
|
|
}
|