2023-09-22 16:06:08 +08:00
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2024-03-28 13:46:35 +08:00
|
|
|
import 'package:flutter_native_contact_picker/flutter_native_contact_picker.dart';
|
2023-09-22 16:06:08 +08:00
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
class RecipientInformationState{
|
2024-06-14 15:46:43 +08:00
|
|
|
RecipientInformationState() {
|
|
|
|
|
Map map = Get.arguments;
|
|
|
|
|
idList.value = map['idList'];
|
|
|
|
|
isFromType.value = map['isFromType'];
|
|
|
|
|
}
|
|
|
|
|
RxInt type = 1.obs;// 1、个人用户 2、星寓用户
|
2023-09-22 16:06:08 +08:00
|
|
|
final TextEditingController numberController = TextEditingController();
|
2024-03-28 13:46:35 +08:00
|
|
|
final FlutterContactPicker contactPicker = FlutterContactPicker();
|
|
|
|
|
late Contact contact;
|
2023-09-22 16:06:08 +08:00
|
|
|
|
2024-06-14 15:46:43 +08:00
|
|
|
TextEditingController passwordTF = TextEditingController();
|
|
|
|
|
|
|
|
|
|
final RxString countryName = '中国'.obs;
|
|
|
|
|
final RxString countryCode = '86'.obs;
|
|
|
|
|
final RxInt isFromType = 1.obs; // 1从转移智能锁过来 2 转移网关
|
|
|
|
|
final RxList idList = [].obs;
|
2023-09-22 16:06:08 +08:00
|
|
|
}
|