系统消息页

hmxc
张萌 4 years ago
parent 0ce81f09f6
commit c6c95612cd

@ -1,11 +1,19 @@
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class AppStyle {
//
static const primaryColor =Color(0xFFFDCF12);
static const minorColor=Color(0xFFFFDF5D);
//
//
static const primaryTextColor=Color(0xFF333333);
static const minorTextColor=Color(0xFF999999);
//
final barTitleStyle=TextStyle(
color: primaryTextColor,
fontSize: 36.sp,
fontWeight: FontWeight.bold,
);
}

@ -0,0 +1,49 @@
import 'package:aku_community_manager/style/app_style.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class SystemMessage extends StatefulWidget {
SystemMessage({Key key}) : super(key: key);
@override
_SystemMessageState createState() => _SystemMessageState();
}
class _SystemMessageState extends State<SystemMessage> {
Widget _messageList(String date){
Column(
children: [
Container(
alignment: Alignment.center,
width: double.infinity,
height: 48.w+33.w,
child: Text('date',style: TextStyle(color: AppStyle.minorTextColor,fontSize: 24.sp),),
),
Container(
padding: EdgeInsets.all(24.w),
color: Color(0xFFFFFFFF),
child: Column(
children: [
Row(
children:[ Icon(Icons.point_of_sale,size: 16.w,),
SizedBox(width: 16.w,),
Text('系统通知',style: TextStyle(color:AppStyle.primaryTextColor,fontSize:32.sp,fontWeight: FontWeight.w600),),
]
),
],
),
),
],
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title:Text('消息',style:AppStyle().barTitleStyle),
),
body:ListView(children: [
_messageList('2020-10-23 10:00')
],) ,
);
}
}

@ -24,6 +24,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.0-nullsafety.1"
carousel_slider:
dependency: "direct main"
description:
name: carousel_slider
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.3.1"
characters:
dependency: transitive
description:

@ -36,6 +36,8 @@ dependencies:
get: ^3.15.0
#刷新
flutter_easyrefresh: ^2.1.6
#划动组件
carousel_slider: ^2.3.1
aku_ui:
git:

Loading…
Cancel
Save