1,更换手掌、虹膜部分图片
2,优化手掌、虹膜部分逻辑显示
This commit is contained in:
parent
64e8c49e31
commit
cd9d3d3136
BIN
star_lock/images/main/icon_addIris_step1.png
Normal file
BIN
star_lock/images/main/icon_addIris_step1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
star_lock/images/main/icon_addPalm_step1.png
Normal file
BIN
star_lock/images/main/icon_addPalm_step1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 197 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
@ -34,8 +34,8 @@ class _AddIrisPageState extends State<AddIrisPage> {
|
||||
),
|
||||
Obx(() => Image.asset(
|
||||
state.isClickAddFace.value == false
|
||||
? 'images/main/icon_addFace_step1.png'
|
||||
: 'images/main/icon_addFace_step2.png',
|
||||
? 'images/main/icon_addIris_step1.png'
|
||||
: 'images/main/icon_addIris_step1.png',
|
||||
width: 100.w,
|
||||
height: 457.h,
|
||||
fit: BoxFit.fitHeight,
|
||||
|
||||
@ -33,7 +33,8 @@ class LockDetailPage extends StatefulWidget {
|
||||
State<LockDetailPage> createState() => _LockDetailPageState();
|
||||
}
|
||||
|
||||
class _LockDetailPageState extends State<LockDetailPage> with TickerProviderStateMixin, RouteAware {
|
||||
class _LockDetailPageState extends State<LockDetailPage>
|
||||
with TickerProviderStateMixin, RouteAware {
|
||||
// with RouteAware
|
||||
final logic = Get.put(LockDetailLogic());
|
||||
final state = Get.find<LockDetailLogic>().state;
|
||||
@ -121,7 +122,8 @@ class _LockDetailPageState extends State<LockDetailPage> with TickerProviderStat
|
||||
Storage.setStringList(saveBluePrivateKey, savePrivateKeyList);
|
||||
|
||||
// signKey
|
||||
List<int> signKeyData = state.keyInfos.value.bluetooth!.signKey!.cast<int>();
|
||||
List<int> signKeyData =
|
||||
state.keyInfos.value.bluetooth!.signKey!.cast<int>();
|
||||
var saveSignKeyList = changeIntListToStringList(signKeyData);
|
||||
Storage.setStringList(saveBlueSignKey, saveSignKeyList);
|
||||
|
||||
@ -676,27 +678,27 @@ class _LockDetailPageState extends State<LockDetailPage> with TickerProviderStat
|
||||
);
|
||||
}
|
||||
|
||||
if (state.keyInfos.value.lockFeature!.isSupportIris == 1) {
|
||||
showWidgetArr.add(
|
||||
bottomItem('images/main/icon_iris.png', '虹膜'.tr,
|
||||
state.openDoorBtnisUneable.value, state.bottomBtnisEable.value, () {
|
||||
Get.toNamed(Routers.irisListPage, arguments: {
|
||||
"lockId": state.keyInfos.value.lockId,
|
||||
});
|
||||
}),
|
||||
);
|
||||
}
|
||||
// if (state.keyInfos.value.lockFeature!.isSupportIris == 1) {
|
||||
showWidgetArr.add(
|
||||
bottomItem('images/main/icon_iris.png', '虹膜'.tr,
|
||||
state.openDoorBtnisUneable.value, state.bottomBtnisEable.value, () {
|
||||
Get.toNamed(Routers.irisListPage, arguments: {
|
||||
"lockId": state.keyInfos.value.lockId,
|
||||
});
|
||||
}),
|
||||
);
|
||||
// }
|
||||
|
||||
if (state.keyInfos.value.lockFeature!.palmVein == 1) {
|
||||
showWidgetArr.add(
|
||||
bottomItem('images/main/icon_palm.png', '手掌'.tr,
|
||||
state.openDoorBtnisUneable.value, state.bottomBtnisEable.value, () {
|
||||
Get.toNamed(Routers.palmListPage, arguments: {
|
||||
"lockId": state.keyInfos.value.lockId,
|
||||
});
|
||||
}),
|
||||
);
|
||||
}
|
||||
// if (state.keyInfos.value.lockFeature!.palmVein == 1) {
|
||||
showWidgetArr.add(
|
||||
bottomItem('images/main/icon_palm.png', '手掌'.tr,
|
||||
state.openDoorBtnisUneable.value, state.bottomBtnisEable.value, () {
|
||||
Get.toNamed(Routers.palmListPage, arguments: {
|
||||
"lockId": state.keyInfos.value.lockId,
|
||||
});
|
||||
}),
|
||||
);
|
||||
// }
|
||||
|
||||
//可视对讲门锁新增->监控
|
||||
if (state.keyInfos.value.lockFeature!.videoIntercom == 1) {
|
||||
@ -805,15 +807,17 @@ class _LockDetailPageState extends State<LockDetailPage> with TickerProviderStat
|
||||
SizedBox(
|
||||
width: width,
|
||||
height: height,
|
||||
child: Image.asset(iconUrl,
|
||||
width: width,
|
||||
height: height,
|
||||
color: openDoorBtnisUneable
|
||||
? (bottomBtnisEable
|
||||
? AppColors.mainColor
|
||||
: AppColors.lockDetailBottomBtnUneable)
|
||||
: AppColors.lockDetailBottomBtnUneable,
|
||||
fit: BoxFit.fitWidth),
|
||||
child: Image.asset(
|
||||
iconUrl,
|
||||
width: width,
|
||||
height: height,
|
||||
color: openDoorBtnisUneable
|
||||
? (bottomBtnisEable
|
||||
? AppColors.mainColor
|
||||
: AppColors.lockDetailBottomBtnUneable)
|
||||
: AppColors.lockDetailBottomBtnUneable,
|
||||
// fit: BoxFit.fitWidth
|
||||
),
|
||||
),
|
||||
SizedBox(height: 10.w),
|
||||
Expanded(
|
||||
|
||||
@ -34,8 +34,8 @@ class _AddPalmPageState extends State<AddPalmPage> {
|
||||
),
|
||||
Obx(() => Image.asset(
|
||||
state.isClickAddFace.value == false
|
||||
? 'images/main/icon_addFace_step1.png'
|
||||
: 'images/main/icon_addFace_step2.png',
|
||||
? 'images/main/icon_addPalm_step1.png'
|
||||
: 'images/main/icon_addPalm_step1.png',
|
||||
width: 100.w,
|
||||
height: 457.h,
|
||||
fit: BoxFit.fitHeight,
|
||||
@ -50,7 +50,7 @@ class _AddPalmPageState extends State<AddPalmPage> {
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
"请单人正对门锁,距离一个成年人手臂长度\n(约0.6米)。\n保持脸部无遮挡,露出五官。",
|
||||
"请自然张开手掌,掌心正对摄像头,距离约一个成年\n人手掌宽度(约10厘米)。",
|
||||
textAlign: TextAlign.left,
|
||||
maxLines: null,
|
||||
style:
|
||||
|
||||
@ -438,7 +438,7 @@ class PalmListLogic extends BaseGetXController {
|
||||
|
||||
var isDemoMode = await Storage.getBool(ifIsDemoModeOrNot);
|
||||
if (isDemoMode == false) {
|
||||
_replySubscription.cancel();
|
||||
// _replySubscription.cancel();
|
||||
_teamEvent.cancel();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user