* 'master' of http://test.akuhotel.com:8099/zhangmeng/aku_community_manager:
  系统消息页

# Conflicts:
#	lib/style/app_style.dart
hmxc
小赖 4 years ago
commit cce2d71c5e

@ -1,5 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class AppStyle {
//
static const primaryColor = Color(0xFFFDCF12);
@ -14,4 +16,11 @@ class AppStyle {
///
static const backgroundColor = Color(0xFFF9F9F9);
///
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')
],) ,
);
}
}

@ -31,6 +31,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.0.4"
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:

@ -35,6 +35,8 @@ dependencies:
get: ^3.15.0
#刷新
flutter_easyrefresh: ^2.1.6
#划动组件
carousel_slider: ^2.3.1
#qrcode san
qr_code_scanner: ^0.0.13
#toast

Loading…
Cancel
Save