Files
fcs/lib/pages/log_list.dart
2020-05-29 07:45:27 +06:30

98 lines
3.6 KiB
Dart

import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import 'package:fcs/model/log_model.dart';
import 'package:fcs/widget/local_text.dart';
import 'package:fcs/widget/localization/app_translations.dart';
import 'package:fcs/widget/progress.dart';
import '../theme/theme.dart';
class LogList extends StatefulWidget {
@override
_LogListState createState() => _LogListState();
}
class _LogListState extends State<LogList> {
final double dotSize = 15.0;
var dateFormatter = new DateFormat('dd MMM yyyy - hh:mm:ss a');
bool _isLoading = false;
@override
Widget build(BuildContext context) {
LogModel logModel = Provider.of<LogModel>(context);
return LocalProgress(
inAsyncCall: _isLoading,
child: Scaffold(
appBar: AppBar(
backgroundColor: primaryColor,
title: LocalText(
context,
'log.title',
color: Colors.white,
fontSize: 20,
),
),
body: new ListView.separated(
separatorBuilder: (context, index) => Divider(
color: Colors.black,
),
scrollDirection: Axis.vertical,
padding: EdgeInsets.only(left: 15, right: 15, top: 15),
shrinkWrap: true,
itemCount: logModel.logs.length,
itemBuilder: (BuildContext context, int index) {
return Stack(
children: <Widget>[
InkWell(
onTap: () {},
child: Row(
children: <Widget>[
Expanded(
child: new Padding(
padding: const EdgeInsets.symmetric(vertical: 0.0),
child: new Row(
children: <Widget>[
new Padding(
padding: new EdgeInsets.symmetric(
horizontal: 32.0 - dotSize / 2),
child: Icon(
Icons.message,
color: primaryColor,
),
),
new Expanded(
child: new Column(
crossAxisAlignment:
CrossAxisAlignment.start,
children: <Widget>[
new Text(
logModel.logs[index].deviceName,
style: new TextStyle(
fontSize: 15.0,
color: Colors.black),
),
new Text(
"Last login at : ${logModel.logs[index].activeTime == null ? "" : dateFormatter.format(logModel.logs[index].activeTime)}",
style: new TextStyle(
fontSize: 13.0, color: Colors.grey),
),
],
),
),
],
),
),
),
],
),
),
],
);
}),
),
);
}
}