insert pages
This commit is contained in:
@@ -2,14 +2,12 @@ import 'package:flutter/material.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:fcs/model/notification_model.dart';
|
||||
import 'package:fcs/pages/util.dart';
|
||||
import 'package:fcs/vo/notification.dart' as Noti;
|
||||
import 'package:fcs/vo/popup_menu.dart';
|
||||
import 'package:fcs/widget/localization/app_translations.dart';
|
||||
import 'package:fcs/widget/popupmenu.dart';
|
||||
import 'package:fcs/widget/progress.dart';
|
||||
|
||||
import '../theme/theme.dart';
|
||||
import '../widget/local_text.dart';
|
||||
|
||||
class NotificationList extends StatefulWidget {
|
||||
@override
|
||||
@@ -18,7 +16,7 @@ class NotificationList extends StatefulWidget {
|
||||
|
||||
class _NotificationListState extends State<NotificationList> {
|
||||
var timeFormatter = new DateFormat('KK:mm a');
|
||||
var dateFormatter = new DateFormat('dd MMM');
|
||||
var dateFormatter = new DateFormat('dd MMM yyyy');
|
||||
final double dotSize = 15.0;
|
||||
int _selectedIndex = 0;
|
||||
bool _isLoading = false;
|
||||
@@ -34,69 +32,74 @@ class _NotificationListState extends State<NotificationList> {
|
||||
child: Scaffold(
|
||||
appBar: AppBar(
|
||||
backgroundColor: primaryColor,
|
||||
title: Text(AppTranslations.of(context).text("noti.title")),
|
||||
actions: <Widget>[
|
||||
PopupMenuButton<PopupMenu>(
|
||||
elevation: 3.2,
|
||||
onSelected: (selected) {
|
||||
setState(() {
|
||||
this._selectedIndex = selected.index;
|
||||
});
|
||||
notificationModel.filter(selected.index);
|
||||
},
|
||||
icon: Container(
|
||||
width: 30,
|
||||
height: 30,
|
||||
decoration: new BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
color: Colors.white,
|
||||
),
|
||||
child: Stack(
|
||||
fit: StackFit.expand,
|
||||
children: <Widget>[
|
||||
Icon(
|
||||
Icons.filter_list,
|
||||
color: primaryColor,
|
||||
),
|
||||
_selectedIndex != 0
|
||||
? Positioned(
|
||||
bottom: 0,
|
||||
right: 0,
|
||||
child: Container(
|
||||
width: 10,
|
||||
height: 10,
|
||||
decoration: new BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
color: secondaryColor,
|
||||
),
|
||||
),
|
||||
)
|
||||
: Container()
|
||||
],
|
||||
)),
|
||||
itemBuilder: (BuildContext context) {
|
||||
return notificationMenu.map((PopupMenu choice) {
|
||||
return PopupMenuItem<PopupMenu>(
|
||||
value: choice,
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Text(choice.status),
|
||||
SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
_selectedIndex != null &&
|
||||
_selectedIndex == choice.index
|
||||
? Icon(
|
||||
Icons.check,
|
||||
color: Colors.grey,
|
||||
)
|
||||
: Container(),
|
||||
],
|
||||
),
|
||||
);
|
||||
}).toList();
|
||||
}),
|
||||
],
|
||||
title: LocalText(
|
||||
context,
|
||||
'noti.title',
|
||||
fontSize: 18,
|
||||
color: Colors.white,
|
||||
),
|
||||
// actions: <Widget>[
|
||||
// PopupMenuButton<PopupMenu>(
|
||||
// elevation: 3.2,
|
||||
// onSelected: (selected) {
|
||||
// setState(() {
|
||||
// this._selectedIndex = selected.index;
|
||||
// });
|
||||
// notificationModel.filter(selected.index);
|
||||
// },
|
||||
// icon: Container(
|
||||
// width: 30,
|
||||
// height: 30,
|
||||
// decoration: new BoxDecoration(
|
||||
// shape: BoxShape.circle,
|
||||
// color: Colors.white,
|
||||
// ),
|
||||
// child: Stack(
|
||||
// fit: StackFit.expand,
|
||||
// children: <Widget>[
|
||||
// Icon(
|
||||
// Icons.filter_list,
|
||||
// color: primaryColor,
|
||||
// ),
|
||||
// _selectedIndex != 0
|
||||
// ? Positioned(
|
||||
// bottom: 0,
|
||||
// right: 0,
|
||||
// child: Container(
|
||||
// width: 10,
|
||||
// height: 10,
|
||||
// decoration: new BoxDecoration(
|
||||
// shape: BoxShape.circle,
|
||||
// color: secondaryColor,
|
||||
// ),
|
||||
// ),
|
||||
// )
|
||||
// : Container()
|
||||
// ],
|
||||
// )),
|
||||
// itemBuilder: (BuildContext context) {
|
||||
// return notificationMenu.map((PopupMenu choice) {
|
||||
// return PopupMenuItem<PopupMenu>(
|
||||
// value: choice,
|
||||
// child: Row(
|
||||
// children: <Widget>[
|
||||
// Text(choice.status),
|
||||
// SizedBox(
|
||||
// width: 10,
|
||||
// ),
|
||||
// _selectedIndex != null &&
|
||||
// _selectedIndex == choice.index
|
||||
// ? Icon(
|
||||
// Icons.check,
|
||||
// color: Colors.grey,
|
||||
// )
|
||||
// : Container(),
|
||||
// ],
|
||||
// ),
|
||||
// );
|
||||
// }).toList();
|
||||
// }),
|
||||
// ],
|
||||
),
|
||||
body: new ListView.separated(
|
||||
separatorBuilder: (context, index) => Divider(
|
||||
@@ -105,9 +108,9 @@ class _NotificationListState extends State<NotificationList> {
|
||||
scrollDirection: Axis.vertical,
|
||||
padding: EdgeInsets.only(left: 15, right: 15, top: 15),
|
||||
shrinkWrap: true,
|
||||
itemCount: notificationModel.notis.length,
|
||||
itemCount: notificationModel.notifications.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
Noti.Notification noti = notificationModel.notis[index];
|
||||
Noti.Notification noti = notificationModel.notifications[index];
|
||||
return Stack(
|
||||
children: <Widget>[
|
||||
InkWell(
|
||||
@@ -116,31 +119,39 @@ class _NotificationListState extends State<NotificationList> {
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: new Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 16.0),
|
||||
padding: const EdgeInsets.symmetric(vertical: 10.0),
|
||||
child: new Row(
|
||||
children: <Widget>[
|
||||
new Padding(
|
||||
padding: new EdgeInsets.symmetric(
|
||||
horizontal: 32.0 - dotSize / 2),
|
||||
child: Icon(Icons.message),
|
||||
),
|
||||
// new Padding(
|
||||
// padding: new EdgeInsets.symmetric(
|
||||
// horizontal: 32.0 - dotSize / 2),
|
||||
// child: Icon(Icons.message),
|
||||
// ),
|
||||
new Padding(padding: EdgeInsets.only(left: 10)),
|
||||
new Expanded(
|
||||
child: new Column(
|
||||
crossAxisAlignment:
|
||||
CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
noti.marketPlace == null
|
||||
? Container()
|
||||
: new Text(
|
||||
noti.marketPlace,
|
||||
style: new TextStyle(
|
||||
fontSize: 15.0,
|
||||
color: secondaryColor),
|
||||
),
|
||||
new Text(
|
||||
noti.getDesc,
|
||||
style: new TextStyle(
|
||||
fontSize: 15.0,
|
||||
color: Colors.black),
|
||||
color: secondaryColor),
|
||||
),
|
||||
new Text(
|
||||
noti.itemType == "reg"
|
||||
? ""
|
||||
: noti.itemNumber,
|
||||
noti.status == null ? "" : noti.status,
|
||||
style: new TextStyle(
|
||||
fontSize: 13.0, color: Colors.grey),
|
||||
fontSize: 13.0,
|
||||
color: secondaryColor),
|
||||
),
|
||||
],
|
||||
),
|
||||
@@ -164,31 +175,31 @@ class _NotificationListState extends State<NotificationList> {
|
||||
],
|
||||
),
|
||||
),
|
||||
noti.seen
|
||||
? Container()
|
||||
: new Positioned(
|
||||
left: 11,
|
||||
top: 11,
|
||||
child: new Container(
|
||||
padding: EdgeInsets.all(2),
|
||||
decoration: new BoxDecoration(
|
||||
color: Colors.red,
|
||||
borderRadius: BorderRadius.circular(6),
|
||||
),
|
||||
constraints: BoxConstraints(
|
||||
minWidth: 18,
|
||||
minHeight: 18,
|
||||
),
|
||||
child: Text(
|
||||
'new',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 14,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
),
|
||||
)
|
||||
// noti.seen
|
||||
// ? Container()
|
||||
// : new Positioned(
|
||||
// left: 11,
|
||||
// top: 11,
|
||||
// child: new Container(
|
||||
// padding: EdgeInsets.all(2),
|
||||
// decoration: new BoxDecoration(
|
||||
// color: Colors.red,
|
||||
// borderRadius: BorderRadius.circular(6),
|
||||
// ),
|
||||
// constraints: BoxConstraints(
|
||||
// minWidth: 18,
|
||||
// minHeight: 18,
|
||||
// ),
|
||||
// child: Text(
|
||||
// 'new',
|
||||
// style: TextStyle(
|
||||
// color: Colors.white,
|
||||
// fontSize: 14,
|
||||
// ),
|
||||
// textAlign: TextAlign.center,
|
||||
// ),
|
||||
// ),
|
||||
// )
|
||||
],
|
||||
);
|
||||
}),
|
||||
@@ -196,10 +207,5 @@ class _NotificationListState extends State<NotificationList> {
|
||||
);
|
||||
}
|
||||
|
||||
_display(Noti.Notification noti) async {
|
||||
if (_isClicked) return;
|
||||
_isClicked = true;
|
||||
await displayNotiContent(context, noti);
|
||||
_isClicked = false;
|
||||
}
|
||||
_display(Noti.Notification noti) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user