This commit is contained in:
魏少阳 2024-03-06 19:13:24 +08:00
commit 77c7168dfa
10 changed files with 12 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 759 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 619 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -58,10 +58,16 @@ class _AccessoriesListPageState extends State<AccessoriesListPage>
height: 140.h, height: 140.h,
padding: EdgeInsets.all(30.w), padding: EdgeInsets.all(30.w),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.start,
children: [ children: [
SizedBox(
width: 30.w,
),
Image.asset( Image.asset(
iconStr, iconStr,
width: 60.w,
height: 60.w,
fit: BoxFit.fill,
), ),
SizedBox(width: 20.w), SizedBox(width: 20.w),
Text( Text(

View File

@ -160,7 +160,7 @@ class _RealTimePicturePageState extends State<RealTimePicturePage>
"images/main/icon_lockDetail_monitoringOpenVoice.png"))), "images/main/icon_lockDetail_monitoringOpenVoice.png"))),
), ),
), ),
SizedBox(width: 30.w), SizedBox(width: 50.w),
// //
GestureDetector( GestureDetector(
onTap: () { onTap: () {
@ -177,7 +177,7 @@ class _RealTimePicturePageState extends State<RealTimePicturePage>
"images/main/icon_lockDetail_monitoringScreenshot.png")), "images/main/icon_lockDetail_monitoringScreenshot.png")),
), ),
), ),
SizedBox(width: 30.w), SizedBox(width: 50.w),
// //
GestureDetector( GestureDetector(
onTap: () { onTap: () {
@ -195,7 +195,7 @@ class _RealTimePicturePageState extends State<RealTimePicturePage>
"images/main/icon_lockDetail_monitoringScreenRecording.png")), "images/main/icon_lockDetail_monitoringScreenRecording.png")),
), ),
), ),
SizedBox(width: 30.w), SizedBox(width: 50.w),
GestureDetector( GestureDetector(
onTap: () { onTap: () {
logic.showToast('该功能暂未开放'); logic.showToast('该功能暂未开放');

View File

@ -81,8 +81,8 @@ class _SelectLockTypePageState extends State<SelectLockTypePage>
// Navigator.pushNamed(context, Routers.gatewayListPage); // Navigator.pushNamed(context, Routers.gatewayListPage);
getNearByLimits(); getNearByLimits();
}), }),
lockTypeItem( lockTypeItem('images/lockType/lockType_camera.png', '网络摄像头',
'images/lockType/lockType_gatewayLock.png', '网络摄像头', () { () {
// Navigator.pushNamed(context, Routers.gatewayListPage); // Navigator.pushNamed(context, Routers.gatewayListPage);
getNearByLimits(); getNearByLimits();
}), }),