git-touch-android-ios-app/lib/widgets/table_view.dart

124 lines
3.8 KiB
Dart
Raw Normal View History

2019-02-08 16:20:28 +01:00
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
2019-11-05 14:22:41 +01:00
import 'package:git_touch/models/theme.dart';
2019-09-04 16:37:22 +02:00
import 'package:git_touch/utils/utils.dart';
2019-10-02 08:58:11 +02:00
import 'package:git_touch/widgets/border_view.dart';
2019-09-04 16:37:22 +02:00
import 'package:primer/primer.dart';
2019-11-05 14:22:41 +01:00
import 'package:provider/provider.dart';
2019-02-08 16:20:28 +01:00
import 'link.dart';
2019-09-21 17:54:25 +02:00
class TableViewHeader extends StatelessWidget {
final String title;
TableViewHeader(this.title);
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: Text(
title.toUpperCase(),
style: TextStyle(color: PrimerColors.gray600, fontSize: 13),
),
);
}
}
2019-02-08 16:20:28 +01:00
class TableViewItem {
2019-09-04 16:59:33 +02:00
final Widget text;
2019-09-14 17:48:01 +02:00
final IconData leftIconData;
2019-09-04 16:59:33 +02:00
final Widget leftWidget;
final Widget rightWidget;
2019-02-08 16:20:28 +01:00
final void Function() onTap;
2019-09-23 18:34:51 +02:00
final String url;
2019-09-14 17:48:01 +02:00
final bool hideRightChevron;
2019-02-08 16:20:28 +01:00
TableViewItem({
2019-09-14 18:01:15 +02:00
@required this.text,
2019-09-14 17:48:01 +02:00
this.leftIconData,
2019-09-04 16:59:33 +02:00
this.leftWidget,
this.rightWidget,
2019-02-08 16:20:28 +01:00
this.onTap,
2019-09-23 18:34:51 +02:00
this.url,
2019-09-14 17:48:01 +02:00
this.hideRightChevron = false,
}) : assert(leftIconData == null || leftWidget == null);
2019-02-08 16:20:28 +01:00
}
class TableView extends StatelessWidget {
2019-09-04 16:37:22 +02:00
final String headerText;
2019-09-14 18:01:15 +02:00
final Iterable<TableViewItem> items;
2019-09-15 09:08:09 +02:00
final bool hasIcon;
2019-02-08 16:20:28 +01:00
2019-09-15 09:08:09 +02:00
double get _leftPadding => hasIcon ? 44 : 12;
TableView({this.headerText, @required this.items, this.hasIcon = false});
2019-09-04 16:37:22 +02:00
2019-02-08 16:20:28 +01:00
@override
Widget build(BuildContext context) {
2019-11-05 14:22:41 +01:00
final themeModel = Provider.of<ThemeModel>(context);
2019-09-04 16:37:22 +02:00
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
2019-09-21 17:54:25 +02:00
if (headerText != null) TableViewHeader(headerText),
2019-10-02 10:09:54 +02:00
CommonStyle.border,
2019-11-05 14:22:41 +01:00
...join(
BorderView(leftPadding: _leftPadding),
items.map((item) {
if (item == null) return null;
var leftWidget = item.leftWidget;
if (leftWidget == null && hasIcon) {
leftWidget = Icon(
item.leftIconData,
color: themeModel.palette.primary,
size: 18,
);
}
// Container(
// width: 24,
// height: 24,
// // decoration: BoxDecoration(
// // borderRadius: BorderRadius.circular(4), color: PrimerColors.blue400),
// child: Icon(iconData, size: 24, color: PrimerColors.gray600),
// )
var widget = DefaultTextStyle(
style: TextStyle(fontSize: 16, color: themeModel.palette.text),
overflow: TextOverflow.ellipsis,
child: Container(
height: 44,
child: Row(
children: [
SizedBox(width: _leftPadding, child: leftWidget),
Expanded(child: item.text),
if (item.rightWidget != null) ...[
DefaultTextStyle(
style: TextStyle(
fontSize: 16,
color: themeModel.palette.tertiaryText,
),
child: item.rightWidget,
),
SizedBox(width: 6)
],
2019-12-12 13:29:56 +01:00
if ((item.onTap != null || item.url != null) &&
2019-11-05 14:22:41 +01:00
!item.hideRightChevron)
Icon(CupertinoIcons.right_chevron,
size: 20, color: themeModel.palette.tertiaryText)
else
SizedBox(width: 2),
SizedBox(width: 8),
],
),
),
);
2019-12-12 13:29:56 +01:00
return Link(onTap: item.onTap, url: item.url, child: widget);
2019-11-05 14:22:41 +01:00
}).toList()),
2019-10-02 10:09:54 +02:00
CommonStyle.border,
2019-09-04 16:37:22 +02:00
],
2019-02-08 16:20:28 +01:00
);
}
}