update icons

hmxc
张萌 3 years ago
parent d7e608e0a5
commit 3921cc6324

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -209,6 +209,10 @@ class R {
/// ![preview](file:///Users/zhangmeng/aku_community/assets/icons/house.png)
static const String ASSETS_ICONS_HOUSE_PNG = 'assets/icons/house.png';
/// ![preview](file:///Users/zhangmeng/aku_community/assets/icons/house_keeping.png)
static const String ASSETS_ICONS_HOUSE_KEEPING_PNG =
'assets/icons/house_keeping.png';
/// ![preview](file:///Users/zhangmeng/aku_community/assets/icons/icon_notification.png)
static const String ASSETS_ICONS_ICON_NOTIFICATION_PNG =
'assets/icons/icon_notification.png';

@ -91,7 +91,7 @@ List<AO> appObjects = [
AO('电子商务', R.ASSETS_ICONS_COMMERC_PNG, () => ElectronicCommercPage()),
AO('服务浏览', R.ASSETS_ICONS_SERVICE_PNG, () => ServiceBrowsePage()),
AO('社区介绍', R.ASSETS_ICONS_INTRODUCE_PNG, () => CommunityIntroducePage()),
AO('家政服务', R.ASSETS_IMAGES_PLACEHOLDER_WEBP, () => HouseKeepingPage()),
AO('家政服务', R.ASSETS_ICONS_HOUSE_KEEPING_PNG, () => HouseKeepingPage()),
// AO(
// '小区教育',
// R.ASSETS_IMAGES_PLACEHOLDER_WEBP,

@ -36,6 +36,7 @@ class HouseKeepingCard extends StatelessWidget {
);
Get.to(() => HouseKeepingDetailPage(
model: model,
callRefresh: callRefresh,
processModels: processModels,
));
},
@ -173,6 +174,7 @@ class HouseKeepingCard extends StatelessWidget {
await HouseKeepingFunc.getHouseKeepingProcess(model.id);
Get.to(() => HouseKeepingDetailPage(
model: model,
callRefresh: callRefresh,
processModels: processModels,
));
},

@ -1,3 +1,4 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';

@ -58,7 +58,7 @@ class _HouseKeepingViewState extends State<HouseKeepingView>
);
},
separatorBuilder: (_, __) {
return 24.w.heightBox;
return 16.w.heightBox;
},
itemCount: items.length);
});

Loading…
Cancel
Save