16 lines
382 B
Dart
16 lines
382 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class LockUserState {
|
|
TextEditingController searchController = TextEditingController(); //邮箱/手机号输入框
|
|
var isCheck = false.obs;
|
|
var getLockId = 0.obs;
|
|
|
|
LockUserState() {
|
|
Map map = Get.arguments;
|
|
if (map['getLockId'] != null) {
|
|
getLockId.value = map['getLockId'];
|
|
}
|
|
}
|
|
}
|