小赖 4 years ago
commit 5a33596b4f

@ -0,0 +1,125 @@
import 'dart:ui';
import 'package:aku_community_manager/style/app_style.dart';
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
import 'package:aku_ui/aku_ui.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:aku_community_manager/const/resource.dart';
class AnouncementCard {
String title;
String date;
AnouncementCard(
this.title,
this.date,
);
}
class AllAnouncement extends StatefulWidget {
AllAnouncement({Key key}) : super(key: key);
@override
_AllAnouncementState createState() => _AllAnouncementState();
}
class _AllAnouncementState extends State<AllAnouncement> {
Widget _anounceCard(String title, String date,) {
return Column(
children: [
AkuButton(
onPressed: (){},
// color: Color(0xFFFFFFFF),
child: Container(
color: Color(0xFFFFFFFF),
width: double.infinity,
height: 152.w,
padding: EdgeInsets.only(top: 24.w, left: 24.w, bottom: 24.w),
child: Row(
children: [
Container(
width: 104.w,
height: 104.w,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(52.w),
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Color(0xFF7EB4FF),
Color(0xFF3F8FFE),
])),
child: Image.asset(R.ASSETS_MESSAGE_IC_TONGZHI_PNG),
),
SizedBox(
width: 24.w,
),
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(title,style: AppStyle().primaryStyle,),
SizedBox(height: 12.w),
Row(
children: [
Text('智慧管家', style: AppStyle().minorStyle),
SizedBox(
width: 24.w,
),
Text(
date,
style: AppStyle().minorStyle,
),
Spacer(),
],
),
],
),
),
],
),
),
),
SizedBox(height: 16.w,),
],
);
}
Widget _anouncementList(String date, List<AnouncementCard> cards,) {
return Column(
children: [
Container(
alignment: Alignment.center,
width: double.infinity,
height: 24.w + 33.w,
child: Text(
date,
style: AppStyle().minorStyle,
)),
...(cards
.map(
(e) => _anounceCard(e.title, e.date),
)
.toList()),
],
);
}
@override
Widget build(BuildContext context) {
return AkuScaffold(
title: '全部公告',
body: ListView(
padding: EdgeInsets.only(top: 24.w, left: 32.w, right: 32.w),
children: [
_anouncementList('2020-10-22', [
AnouncementCard('关于国庆放假的通知和安排', '2020-10-22 10:00',),
AnouncementCard('关于绿化组人员调动通知', '2020-10-22 11:00',),
]),
_anouncementList('2020-10-20', [])
],
),
);
}
}

@ -3,6 +3,7 @@ import 'package:aku_community_manager/provider/user_provider.dart';
import 'package:aku_community_manager/style/app_style.dart';
import 'package:aku_community_manager/tools/screen_tool.dart';
import 'package:aku_community_manager/tools/widget_tool.dart';
import 'package:aku_community_manager/ui/home/announcement/All_anouncement.dart';
import 'package:aku_community_manager/ui/home/messages/message.dart';
import 'package:aku_community_manager/ui/home/application/applications_page.dart';
import 'package:aku_community_manager/ui/home/personal_draw.dart';
@ -311,7 +312,9 @@ class _HomePageState extends State<HomePage> {
Spacer(),
AkuButton(
//
onPressed: () {},
onPressed: () {
Get.to(AllAnouncement());
},
child: Row(
children: [
Text(

@ -17,9 +17,9 @@ class _SystemMessageState extends State<SystemMessage> {
return Column(
children: [
Container(
alignment: Alignment.center,
alignment: Alignment.topCenter,
width: double.infinity,
height: 48.w + 33.w,
height: 24.w + 33.w,
child: Text(
date,
style: TextStyle(color: AppStyle.minorTextColor, fontSize: 24.sp),
@ -157,7 +157,7 @@ class _SystemMessageState extends State<SystemMessage> {
return AkuScaffold(
title: '系统消息',
body: ListView(
padding: EdgeInsets.all(32.w),
padding: EdgeInsets.only(top:24.w,left:32.w,right:32.w),
children: [
_messageList('2020-10-23 10:00', '杨建', '17867665666', '共区'),
_messageList('2020-10-22 10:00', '刘能', '17855823545', '共区'),

Loading…
Cancel
Save