|
|
|
@ -1,13 +1,11 @@
|
|
|
|
|
// Dart imports:
|
|
|
|
|
|
|
|
|
|
import 'package:aku_new_community/const/resource.dart';
|
|
|
|
|
import 'package:aku_new_community/constants/api.dart';
|
|
|
|
|
import 'package:aku_new_community/constants/application_objects.dart';
|
|
|
|
|
import 'package:aku_new_community/model/common/img_model.dart';
|
|
|
|
|
import 'package:aku_new_community/model/community/activity_item_model.dart';
|
|
|
|
|
import 'package:aku_new_community/model/community/board_model.dart';
|
|
|
|
|
import 'package:aku_new_community/model/community/swiper_model.dart';
|
|
|
|
|
import 'package:aku_new_community/pages/home/widget/animate_app_bar.dart';
|
|
|
|
|
import 'package:aku_new_community/pages/message_center_page/message_center_page.dart';
|
|
|
|
|
import 'package:aku_new_community/pages/one_alarm/widget/alarm_page.dart';
|
|
|
|
|
import 'package:aku_new_community/pages/visitor_access_page/visitor_access_page.dart';
|
|
|
|
@ -27,18 +25,16 @@ import 'package:aku_new_community/widget/others/rectIndicator.dart';
|
|
|
|
|
import 'package:aku_new_community/widget/others/user_tool.dart';
|
|
|
|
|
import 'package:badges/badges.dart';
|
|
|
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
|
import 'package:flutter_swiper_null_safety/flutter_swiper_null_safety.dart';
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
import 'package:jpush_flutter/jpush_flutter.dart';
|
|
|
|
|
import 'package:palette_generator/palette_generator.dart';
|
|
|
|
|
import 'package:power_logger/power_logger.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
|
|
|
|
|
|
import 'widget/home_search.dart';
|
|
|
|
|
|
|
|
|
|
class HomePage extends StatefulWidget {
|
|
|
|
|
HomePage({Key? key}) : super(key: key);
|
|
|
|
@ -66,6 +62,9 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
List<ActivityItemModel> _activityItemModels = [];
|
|
|
|
|
List<BoardItemModel> _boardItemModels = [];
|
|
|
|
|
List<SwiperModel> _swiperModels = [];
|
|
|
|
|
SwiperController _swiperController = SwiperController();
|
|
|
|
|
|
|
|
|
|
ValueNotifier<Color> _barColor = ValueNotifier(Colors.transparent);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
@ -81,12 +80,15 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
}
|
|
|
|
|
_scrollController = ScrollController();
|
|
|
|
|
_refreshController = EasyRefreshController();
|
|
|
|
|
SystemChrome.setSystemUIOverlayStyle(
|
|
|
|
|
SystemUiOverlayStyle(statusBarColor: Colors.transparent));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
|
|
|
|
_refreshController.dispose();
|
|
|
|
|
_scrollController?.dispose();
|
|
|
|
|
_swiperController.dispose();
|
|
|
|
|
super.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -97,11 +99,51 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
commentCount = appProvider.messageCenterModel.commentCount ?? 0;
|
|
|
|
|
sysCount = appProvider.messageCenterModel.sysCount ?? 0;
|
|
|
|
|
sum = commentCount + sysCount;
|
|
|
|
|
return Scaffold(
|
|
|
|
|
extendBodyBehindAppBar: true,
|
|
|
|
|
appBar: AnimateAppBar(
|
|
|
|
|
scrollController: _scrollController,
|
|
|
|
|
actions: [
|
|
|
|
|
var head = ValueListenableBuilder(
|
|
|
|
|
valueListenable: _barColor,
|
|
|
|
|
builder: (context, Color color, child) {
|
|
|
|
|
return Container(
|
|
|
|
|
padding: EdgeInsets.only(top: MediaQuery.of(context).padding.top),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border: Border.all(width: 0, color: color),
|
|
|
|
|
color: color,
|
|
|
|
|
),
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
child: child,
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 16.w, horizontal: 16.w),
|
|
|
|
|
child: Row(crossAxisAlignment: CrossAxisAlignment.center, children: [
|
|
|
|
|
if (appProvider.location != null)
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.only(right: 5),
|
|
|
|
|
child: Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_LOCATION_PNG,
|
|
|
|
|
width: 32.w,
|
|
|
|
|
height: 32.w,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
appProvider.location?['city'] == null
|
|
|
|
|
? ''
|
|
|
|
|
: appProvider.location?['city'] as String? ?? '',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontSize: 24.sp,
|
|
|
|
|
color: Color(0xff333333),
|
|
|
|
|
),
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
'(${appProvider.weatherType} ${appProvider.weatherTemp}℃)',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: 24.sp,
|
|
|
|
|
color: Color(0xff999999),
|
|
|
|
|
),
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
GestureDetector(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(() => BeeSearch());
|
|
|
|
@ -134,311 +176,303 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
height: 40.w, width: 40.w),
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
// floatingActionButton: FloatingActionButton(
|
|
|
|
|
//
|
|
|
|
|
// child: Container(
|
|
|
|
|
// decoration: BoxDecoration(
|
|
|
|
|
// image: DecorationImage(
|
|
|
|
|
// fit: BoxFit.fill,
|
|
|
|
|
// image:
|
|
|
|
|
// AssetImage(R.ASSETS_ICONS_ICON_MAIN_OPEN_PNG),)
|
|
|
|
|
// ),
|
|
|
|
|
// ),
|
|
|
|
|
// onPressed: (){
|
|
|
|
|
// print('FloatingActionButton');
|
|
|
|
|
// },
|
|
|
|
|
// ),
|
|
|
|
|
body: Stack(
|
|
|
|
|
children: [
|
|
|
|
|
EasyRefresh(
|
|
|
|
|
controller: _refreshController,
|
|
|
|
|
header: MaterialHeader(),
|
|
|
|
|
firstRefresh: true,
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
//_activityItemModel = await CommunityFunc.activity();
|
|
|
|
|
_activityItemModels = await CommunityFunc.activityList();
|
|
|
|
|
_boardItemModels = await CommunityFunc.board();
|
|
|
|
|
_swiperModels = await CommunityFunc.swiper();
|
|
|
|
|
appProvider.getMessageCenter();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
child: CustomScrollView(
|
|
|
|
|
controller: _scrollController,
|
|
|
|
|
slivers: [
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
HomeSearch(),
|
|
|
|
|
|
|
|
|
|
HomeSwiper(), //要做点击事件
|
|
|
|
|
// SizedBox(height: 100.w),
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.only(top: 24.w, bottom: 32.w),
|
|
|
|
|
child: getFunction(), //ApplicationView(),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
boxShadow: const <BoxShadow>[
|
|
|
|
|
BoxShadow(
|
|
|
|
|
color: Color(0x14000000),
|
|
|
|
|
blurRadius: 0,
|
|
|
|
|
offset: Offset(0.0, 2.0),
|
|
|
|
|
spreadRadius: 0.1)
|
|
|
|
|
],
|
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
|
bottomLeft: Radius.circular(28),
|
|
|
|
|
bottomRight: Radius.circular(28))),
|
|
|
|
|
)
|
|
|
|
|
//ApplicationBox(child: ApplicationView()),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Container(
|
|
|
|
|
height: 40,
|
|
|
|
|
margin:
|
|
|
|
|
EdgeInsets.only(left: 32.w, right: 32.w, top: 24.w),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(8)),
|
|
|
|
|
boxShadow: const <BoxShadow>[
|
|
|
|
|
BoxShadow(
|
|
|
|
|
color: Color(0x14000000),
|
|
|
|
|
blurRadius: 4,
|
|
|
|
|
spreadRadius: 0.5)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: HomeNotification(items: _boardItemModels)),
|
|
|
|
|
),
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 24.w),
|
|
|
|
|
padding: EdgeInsets.only(left: 32.w, top: 24.w),
|
|
|
|
|
width: 140,
|
|
|
|
|
height: 150,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image: AssetImage(R.ASSETS_IMAGES_CARD_YELLOW_PNG),
|
|
|
|
|
)),
|
|
|
|
|
);
|
|
|
|
|
return AnnotatedRegion<SystemUiOverlayStyle>(
|
|
|
|
|
value: SystemUiOverlayStyle.dark,
|
|
|
|
|
child: Scaffold(
|
|
|
|
|
extendBody: true,
|
|
|
|
|
extendBodyBehindAppBar: true,
|
|
|
|
|
body: Stack(
|
|
|
|
|
children: [
|
|
|
|
|
Column(
|
|
|
|
|
children: [
|
|
|
|
|
head,
|
|
|
|
|
Flexible(
|
|
|
|
|
child: EasyRefresh(
|
|
|
|
|
controller: _refreshController,
|
|
|
|
|
header: BeeBallPauseHeader(bgColor: _barColor),
|
|
|
|
|
firstRefresh: true,
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
//_activityItemModel = await CommunityFunc.activity();
|
|
|
|
|
_activityItemModels = await CommunityFunc.activityList();
|
|
|
|
|
_boardItemModels = await CommunityFunc.board();
|
|
|
|
|
_swiperModels = await CommunityFunc.swiper();
|
|
|
|
|
appProvider.getMessageCenter();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
child: CustomScrollView(
|
|
|
|
|
controller: _scrollController,
|
|
|
|
|
slivers: [
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
'访客邀请',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'一键分享',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
'让拜访不再是难事',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_INVITE_PNG,
|
|
|
|
|
width: 100.w,
|
|
|
|
|
height: 100.w,
|
|
|
|
|
),
|
|
|
|
|
30.hb,
|
|
|
|
|
HomeSwiper(), //要做点击事件
|
|
|
|
|
// SizedBox(height: 100.w),
|
|
|
|
|
Container(
|
|
|
|
|
padding:
|
|
|
|
|
EdgeInsets.only(top: 24.w, bottom: 32.w),
|
|
|
|
|
child: getFunction(), //ApplicationView(),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
boxShadow: const <BoxShadow>[
|
|
|
|
|
BoxShadow(
|
|
|
|
|
color: Color(0x14000000),
|
|
|
|
|
blurRadius: 0,
|
|
|
|
|
offset: Offset(0.0, 2.0),
|
|
|
|
|
spreadRadius: 0.1)
|
|
|
|
|
],
|
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
|
bottomLeft: Radius.circular(28),
|
|
|
|
|
bottomRight: Radius.circular(28))),
|
|
|
|
|
)
|
|
|
|
|
//ApplicationBox(child: ApplicationView()),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(VisitorAccessPage());
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
25.wb,
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 24.w),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
width: 190,
|
|
|
|
|
height: 69,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image:
|
|
|
|
|
AssetImage(R.ASSETS_IMAGES_CARD_PINK_PNG),
|
|
|
|
|
)),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.wb,
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'一键报警',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Container(
|
|
|
|
|
height: 40,
|
|
|
|
|
margin: EdgeInsets.only(
|
|
|
|
|
left: 32.w, right: 32.w, top: 24.w),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
borderRadius:
|
|
|
|
|
BorderRadius.all(Radius.circular(8)),
|
|
|
|
|
boxShadow: const <BoxShadow>[
|
|
|
|
|
BoxShadow(
|
|
|
|
|
color: Color(0x14000000),
|
|
|
|
|
blurRadius: 4,
|
|
|
|
|
spreadRadius: 0.5)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: HomeNotification(items: _boardItemModels)),
|
|
|
|
|
),
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 24.w),
|
|
|
|
|
padding:
|
|
|
|
|
EdgeInsets.only(left: 32.w, top: 24.w),
|
|
|
|
|
width: 140,
|
|
|
|
|
height: 150,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image: AssetImage(
|
|
|
|
|
R.ASSETS_IMAGES_CARD_YELLOW_PNG),
|
|
|
|
|
)),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
'访客邀请',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'一键分享',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'提交报警位置给物业',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
'让拜访不再是难事',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_POLICE_PNG,
|
|
|
|
|
width: 98.w,
|
|
|
|
|
height: 98.w,
|
|
|
|
|
),
|
|
|
|
|
20.wb,
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_INVITE_PNG,
|
|
|
|
|
width: 100.w,
|
|
|
|
|
height: 100.w,
|
|
|
|
|
),
|
|
|
|
|
30.hb,
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(VisitorAccessPage());
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(AlarmPage());
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 20.w),
|
|
|
|
|
width: 190,
|
|
|
|
|
height: 69,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image:
|
|
|
|
|
AssetImage(R.ASSETS_IMAGES_CARD_BLUE_PNG),
|
|
|
|
|
)),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
25.wb,
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 24.w),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
20.wb,
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'建议咨询',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
width: 190,
|
|
|
|
|
height: 69,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image: AssetImage(
|
|
|
|
|
R.ASSETS_IMAGES_CARD_PINK_PNG),
|
|
|
|
|
)),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.wb,
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'一键报警',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight:
|
|
|
|
|
FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'提交报警位置给物业',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_POLICE_PNG,
|
|
|
|
|
width: 98.w,
|
|
|
|
|
height: 98.w,
|
|
|
|
|
),
|
|
|
|
|
20.wb,
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'欢迎给我们提供服务意见',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_CONSULT_PNG,
|
|
|
|
|
width: 98.w,
|
|
|
|
|
height: 98.w,
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(AlarmPage());
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
20.wb,
|
|
|
|
|
GestureDetector(
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 20.w),
|
|
|
|
|
width: 190,
|
|
|
|
|
height: 69,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
image: DecorationImage(
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
image: AssetImage(
|
|
|
|
|
R.ASSETS_IMAGES_CARD_BLUE_PNG),
|
|
|
|
|
)),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.wb,
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
20.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'建议咨询',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xD9000000),
|
|
|
|
|
fontSize: 26.sp,
|
|
|
|
|
fontWeight:
|
|
|
|
|
FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
10.hb,
|
|
|
|
|
Text(
|
|
|
|
|
'欢迎给我们提供服务意见',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0x73000000),
|
|
|
|
|
fontSize: 20.sp,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
Image.asset(
|
|
|
|
|
R.ASSETS_ICONS_ICON_MAIN_CONSULT_PNG,
|
|
|
|
|
width: 98.w,
|
|
|
|
|
height: 98.w,
|
|
|
|
|
),
|
|
|
|
|
20.wb,
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(AdvicePage(
|
|
|
|
|
type: AdviceType.SUGGESTION));
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
onTap: () {
|
|
|
|
|
Get.to(AdvicePage(type: AdviceType.SUGGESTION));
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
HomeTitle(
|
|
|
|
|
title: '社区活动',
|
|
|
|
|
suffixTitle: '查看全部',
|
|
|
|
|
onTap: () => Get.to(() => ActivityListPage()),
|
|
|
|
|
),
|
|
|
|
|
_activityItemModels == []
|
|
|
|
|
? SizedBox()
|
|
|
|
|
: Container(
|
|
|
|
|
height: 400.w,
|
|
|
|
|
padding: EdgeInsets.only(left: 32.w),
|
|
|
|
|
child: ListView.separated(
|
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
|
separatorBuilder: (context, index) {
|
|
|
|
|
return SizedBox(
|
|
|
|
|
width: 16.w,
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
|
return Container(
|
|
|
|
|
width: 500.w,
|
|
|
|
|
child: Builder(
|
|
|
|
|
builder: (context) {
|
|
|
|
|
return ActivityCard(
|
|
|
|
|
model: _activityItemModels[
|
|
|
|
|
index]);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
itemCount: _activityItemModels.length,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
// : ActivityCard(model: _activityItemModel)
|
|
|
|
|
// .pSymmetric(h: 24.w, v: 24.w),
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
// HomeTitle(
|
|
|
|
|
// title: '公共资讯',
|
|
|
|
|
// suffixTitle: '更多资讯',
|
|
|
|
|
// onTap: () async {
|
|
|
|
|
// final cancel = BotToast.showLoading();
|
|
|
|
|
// BaseModel model = await NetUtil().get(API.news.category);
|
|
|
|
|
// List<NewsCategoryModel>? category;
|
|
|
|
|
// if (model.status == true && model.data != null) {
|
|
|
|
|
// category = (model.data as List)
|
|
|
|
|
// .map((e) => NewsCategoryModel.fromJson(e))
|
|
|
|
|
// .toList();
|
|
|
|
|
// }
|
|
|
|
|
// cancel();
|
|
|
|
|
// Get.to(
|
|
|
|
|
// () => PublicInfomationPage(models: category ?? []));
|
|
|
|
|
// },
|
|
|
|
|
// ),
|
|
|
|
|
HomeTitle(
|
|
|
|
|
title: '社区活动',
|
|
|
|
|
suffixTitle: '查看全部',
|
|
|
|
|
onTap: () => Get.to(() => ActivityListPage()),
|
|
|
|
|
),
|
|
|
|
|
_activityItemModels == []
|
|
|
|
|
? SizedBox()
|
|
|
|
|
: Container(
|
|
|
|
|
height: 400.w,
|
|
|
|
|
padding: EdgeInsets.only(left: 32.w),
|
|
|
|
|
child: ListView.separated(
|
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
|
separatorBuilder: (context, index) {
|
|
|
|
|
return SizedBox(
|
|
|
|
|
width: 16.w,
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
|
return Container(
|
|
|
|
|
width: 500.w,
|
|
|
|
|
child: Builder(
|
|
|
|
|
builder: (context) {
|
|
|
|
|
return ActivityCard(
|
|
|
|
|
model: _activityItemModels[index]);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
itemCount: _activityItemModels.length,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
// : ActivityCard(model: _activityItemModel)
|
|
|
|
|
// .pSymmetric(h: 24.w, v: 24.w),
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
OverlayLivingBtnWidget()
|
|
|
|
|
],
|
|
|
|
|
OverlayLivingBtnWidget()
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
@ -447,10 +481,25 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
return Container(
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
height: 320.w,
|
|
|
|
|
decoration:
|
|
|
|
|
BoxDecoration(border: Border.all(width: 0, color: _barColor.value)),
|
|
|
|
|
child: AspectRatio(
|
|
|
|
|
aspectRatio: 375 / 160,
|
|
|
|
|
child: Swiper(
|
|
|
|
|
key: UniqueKey(),
|
|
|
|
|
onIndexChanged: (index) async {
|
|
|
|
|
if (_swiperModels.isNotEmpty) {
|
|
|
|
|
var color = await PaletteGenerator.fromImageProvider(
|
|
|
|
|
CachedNetworkImageProvider(
|
|
|
|
|
API.image(
|
|
|
|
|
ImgModel.first(_swiperModels[index].voResourcesImgList)),
|
|
|
|
|
));
|
|
|
|
|
_barColor.value =
|
|
|
|
|
color.dominantColor?.color ?? Colors.transparent;
|
|
|
|
|
} else {
|
|
|
|
|
_barColor.value = Colors.transparent;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
itemBuilder: (BuildContext context, int index) {
|
|
|
|
|
return getSwiperImage(_swiperModels[index]);
|
|
|
|
|
},
|
|
|
|
@ -562,3 +611,62 @@ class _HomePageState extends State<HomePage>
|
|
|
|
|
@override
|
|
|
|
|
bool get wantKeepAlive => true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class BeeBallPauseHeader extends Header {
|
|
|
|
|
/// Key
|
|
|
|
|
final Key? key;
|
|
|
|
|
|
|
|
|
|
final ValueNotifier<Color> bgColor;
|
|
|
|
|
|
|
|
|
|
final LinkHeaderNotifier linkNotifier = LinkHeaderNotifier();
|
|
|
|
|
|
|
|
|
|
BeeBallPauseHeader({
|
|
|
|
|
this.key,
|
|
|
|
|
required this.bgColor,
|
|
|
|
|
bool enableHapticFeedback = true,
|
|
|
|
|
bool enableInfiniteRefresh = false,
|
|
|
|
|
}) : super(
|
|
|
|
|
extent: 70.0,
|
|
|
|
|
triggerDistance: 70.0,
|
|
|
|
|
float: false,
|
|
|
|
|
enableHapticFeedback: enableHapticFeedback,
|
|
|
|
|
enableInfiniteRefresh: enableInfiniteRefresh,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget contentBuilder(
|
|
|
|
|
BuildContext context,
|
|
|
|
|
RefreshMode refreshState,
|
|
|
|
|
double pulledExtent,
|
|
|
|
|
double refreshTriggerPullDistance,
|
|
|
|
|
double refreshIndicatorExtent,
|
|
|
|
|
AxisDirection axisDirection,
|
|
|
|
|
bool float,
|
|
|
|
|
Duration? completeDuration,
|
|
|
|
|
bool enableInfiniteRefresh,
|
|
|
|
|
bool success,
|
|
|
|
|
bool noMore) {
|
|
|
|
|
linkNotifier.contentBuilder(
|
|
|
|
|
context,
|
|
|
|
|
refreshState,
|
|
|
|
|
pulledExtent,
|
|
|
|
|
refreshTriggerPullDistance,
|
|
|
|
|
refreshIndicatorExtent,
|
|
|
|
|
axisDirection,
|
|
|
|
|
float,
|
|
|
|
|
completeDuration,
|
|
|
|
|
enableInfiniteRefresh,
|
|
|
|
|
success,
|
|
|
|
|
noMore);
|
|
|
|
|
return ValueListenableBuilder(
|
|
|
|
|
valueListenable: bgColor,
|
|
|
|
|
builder: (context, Color color, child) {
|
|
|
|
|
return BallPulseHeaderWidget(
|
|
|
|
|
key: key,
|
|
|
|
|
color: color.withBlue(128),
|
|
|
|
|
backgroundColor: color,
|
|
|
|
|
linkNotifier: linkNotifier,
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|