ios 隐藏开门码

更改用户协议
add vegetable banner
newHost
张萌 3 years ago
parent b202ad01c2
commit b96be7655d

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

@ -6,6 +6,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart';
class AppTheme { class AppTheme {
static ThemeData get theme { static ThemeData get theme {
return ThemeData(primarySwatch: Colors.blue).copyWith( return ThemeData(primarySwatch: Colors.blue).copyWith(
useMaterial3: true,
extensions: <ThemeExtension<dynamic>>[ extensions: <ThemeExtension<dynamic>>[
MyAppStyle( MyAppStyle(
mainColor: Colors.blue, mainColor: Colors.blue,

@ -1294,6 +1294,10 @@ class $AssetsImagesGen {
/// File path: assets/images/success.png /// File path: assets/images/success.png
AssetGenImage get success => const AssetGenImage('assets/images/success.png'); AssetGenImage get success => const AssetGenImage('assets/images/success.png');
/// File path: assets/images/vegetable_banner.png
AssetGenImage get vegetableBanner =>
const AssetGenImage('assets/images/vegetable_banner.png');
/// File path: assets/images/white.png /// File path: assets/images/white.png
AssetGenImage get white => const AssetGenImage('assets/images/white.png'); AssetGenImage get white => const AssetGenImage('assets/images/white.png');

@ -18,8 +18,7 @@ class _AgreementPageState extends State<AgreementPage> {
child: Text( child: Text(
''' '''
20220329 20220329 20220330
20220330
() 线 () 线
()  使 ()  使
@ -72,53 +71,61 @@ class _AgreementPageState extends State<AgreementPage> {
1.使 1.使
2. 2.
3.广 3.广
() ()
使便 使使使使
1 ()
2 使使使
3 ()//  
4
5
6
7
8
9
10
11
12
13
14
15
16
17广
18使
19
20使
21
22
23
i. /
ii. /
iii.
24
()
使使使使
()
使使使 ()//  
() 1) 2) 3) ()   () 1) 2) 3) ()  
() 1. 2. 3. 4. 5.线线 6. 7.使 ()saas//   () 1. 2. 3. 4. 5.线线 6. 7.使 ()saas//  
() 1. 2.使 3. 4. 5. () () 1. 2. ()   ()
1. 2.使 3. 4. 5.
()
() 1. 2.
()  
1
2使便
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17广
18使
19
20使
21
22
23
i. /
ii. /
iii.
24
使
()使使使 ()使使使   ()使使使 ()使使使  
() ()saas ()使   () ()saas ()使  
() ()使 () ()使 () ()使 () ()使
''',
''',
style: TextStyle( style: TextStyle(
fontSize: 30.w, fontSize: 30.w,
), ),

@ -26,18 +26,26 @@ class _AllApplicationNewPageState extends State<AllApplicationNewPage> {
case 0: case 0:
return ['报事报修', '设施预约', '生活缴费', '装修管理']; return ['报事报修', '设施预约', '生活缴费', '装修管理'];
case 1: case 1:
return [ return Platform.isIOS
'开门码', ? [
'物品出门', '物品出门',
'地理信息', '地理信息',
'小蜜蜂任务', '小蜜蜂任务',
]; ]
: [
'开门码',
'物品出门',
'地理信息',
'小蜜蜂任务',
];
case 2: case 2:
return ['便民电话', '问卷调查', '活动投票', '快递包裹', '投诉表扬', '业委会', '社区介绍', '借还管理']; return ['便民电话', '问卷调查', '活动投票', '快递包裹', '投诉表扬', '业委会', '社区介绍', '借还管理'];
case 3: case 3:
return ['服务浏览', '周边企业', '住房说明', '电子商务']; return ['服务浏览', '周边企业', '住房说明', '电子商务'];
case 4: case 4:
return Platform.isIOS?['任务发布', '周边服务', '共享投屏']:['智慧养老', '任务发布', '周边服务', '共享投屏']; return Platform.isIOS
? ['任务发布', '周边服务', '共享投屏']
: ['智慧养老', '任务发布', '周边服务', '共享投屏'];
case 5: case 5:
return ['自营商城', '邻家宠物', '共享停车', '二手市场']; return ['自营商城', '邻家宠物', '共享停车', '二手市场'];
default: default:

@ -56,9 +56,10 @@ class _MarketPageState extends State<MarketPage>
int _pageCount = 0; int _pageCount = 0;
double MessageHeight = 76.w; double MessageHeight = 76.w;
double bannerHeight = 260.w; double bannerHeight = 260.w;
double buttonsHeight = 334.w; double buttonsHeight = 340.w;
double searchHeight = 74.w; double searchHeight = 74.w;
double hotGoodHeight = 288.w; double hotGoodHeight = 288.w;
final double vegetablesBanner = 240.w;
MarketStatisticsModel? _statistics; MarketStatisticsModel? _statistics;
double tabBarHeight = 40.w; double tabBarHeight = 40.w;
@ -158,14 +159,8 @@ class _MarketPageState extends State<MarketPage>
Container( Container(
height: 530.w, height: 530.w,
decoration: BoxDecoration( decoration: BoxDecoration(
gradient: LinearGradient( color: Color(0xFFFFF9D1),
begin: Alignment.centerLeft, ),
end: Alignment.centerRight,
colors: [
Color(0xFFFFFFFF),
Color(0xFFFFF9D1),
],
)),
), ),
EasyRefresh.custom( EasyRefresh.custom(
firstRefresh: false, firstRefresh: false,
@ -315,7 +310,7 @@ class _MarketPageState extends State<MarketPage>
key: _sliverAppBarGlobalKey, key: _sliverAppBarGlobalKey,
title: geSearch(), title: geSearch(),
backgroundColor: Color(0xFFF9F9F9), backgroundColor: Color(0xFFF9F9F9),
expandedHeight: MessageHeight+ expandedHeight: MessageHeight +
bannerHeight + bannerHeight +
buttonsHeight + buttonsHeight +
//searchHeight + //searchHeight +
@ -323,6 +318,7 @@ class _MarketPageState extends State<MarketPage>
hotGoodHeight + hotGoodHeight +
ScreenUtil().statusBarHeight + ScreenUtil().statusBarHeight +
kToolbarHeight + kToolbarHeight +
vegetablesBanner +
// //
172 * 2.w, 172 * 2.w,
flexibleSpace: _flexibleSpaceBar(context), flexibleSpace: _flexibleSpaceBar(context),
@ -483,6 +479,8 @@ class _MarketPageState extends State<MarketPage>
20.hb, 20.hb,
_buttonTitle(), _buttonTitle(),
20.hb, 20.hb,
vegetableBannerWidget(),
20.hb,
_recommend(), _recommend(),
20.hb, 20.hb,
_integralMarket(), _integralMarket(),
@ -493,7 +491,12 @@ class _MarketPageState extends State<MarketPage>
); );
} }
// ///banner
Widget vegetableBannerWidget() {
return Assets.images.vegetableBanner.image(width: 712.w, height: 200.w);
}
///
Widget _integralMarket() { Widget _integralMarket() {
return Container( return Container(
width: 720.w, width: 720.w,
@ -854,14 +857,14 @@ class _MarketPageState extends State<MarketPage>
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
BeeImageNetwork( BeeImageNetwork(
width: 88.w, width: 80.w,
height: 88.w, height: 80.w,
imgs: item.imgUrls, imgs: item.imgUrls,
), ),
8.hb, 8.hb,
Text( Text(
(item.name ?? '').replaceAll('', ''), (item.name ?? '').replaceAll('', ''),
style: TextStyle(fontSize: 28.sp, color: ktextPrimary), style: TextStyle(fontSize: 22.sp, color: ktextPrimary),
) )
], ],
), ),
@ -881,13 +884,13 @@ class _MarketPageState extends State<MarketPage>
children: [ children: [
Image.asset( Image.asset(
Assets.newIcon.allClasses.path, Assets.newIcon.allClasses.path,
height: 88.w, height: 80.w,
width: 88.w, width: 80.w,
), ),
8.hb, 8.hb,
Text( Text(
'全部分类', '全部分类',
style: TextStyle(fontSize: 28.sp, color: ktextPrimary), style: TextStyle(fontSize: 22.sp, color: ktextPrimary),
), ),
], ],
), ),

@ -2,7 +2,7 @@ name: aku_new_community
description: A new Flutter project. description: A new Flutter project.
publish_to: "none" publish_to: "none"
version: 1.8.15-dev+56 version: 1.8.16-dev+57
environment: environment:
sdk: ">=2.17.0 <3.0.0" sdk: ">=2.17.0 <3.0.0"

Loading…
Cancel
Save