23 lines
634 B
Dart
23 lines
634 B
Dart
import 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
import 'package:starwork_flutter/base/app_permission.dart';
|
|
import 'package:starwork_flutter/base/base_controller.dart';
|
|
|
|
class SearchDeviceController extends BaseController {
|
|
// 搜索状态管理
|
|
final RxBool _isSearching = false.obs;
|
|
|
|
// Getter
|
|
bool get isSearching => _isSearching.value;
|
|
|
|
@override
|
|
void onInit() async {
|
|
super.onInit();
|
|
}
|
|
}
|