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

110 lines
3.0 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-09-04 16:37:22 +02:00
import 'package:git_touch/utils/utils.dart';
import 'package:primer/primer.dart';
2019-02-08 16:20:28 +01:00
import 'link.dart';
2019-09-04 16:37:22 +02:00
class TableViewSeperator extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
height: 20,
color: PrimerColors.gray100,
);
}
}
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;
final WidgetBuilder screenBuilder;
2019-09-14 17:48:01 +02:00
final bool hideRightChevron;
2019-02-08 16:20:28 +01:00
TableViewItem({
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,
this.screenBuilder,
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-02-08 16:20:28 +01:00
final List<TableViewItem> items;
2019-09-04 16:37:22 +02:00
TableView({this.headerText, @required this.items});
2019-09-05 11:58:14 +02:00
Widget _buildItem(TableViewItem item) {
2019-09-14 11:19:33 +02:00
if (item == null) return null;
2019-09-14 17:48:01 +02:00
var widget = DefaultTextStyle(
style: TextStyle(fontSize: 16, color: PrimerColors.gray900),
overflow: TextOverflow.ellipsis,
child: Container(
height: 44,
child: Row(children: [
if (item.leftIconData != null) ...[
SizedBox(width: 12),
Icon(item.leftIconData),
// Container(
// width: 24,
// height: 24,
// // decoration: BoxDecoration(
// // borderRadius: BorderRadius.circular(4), color: PrimerColors.blue400),
// child: Icon(iconData, size: 24, color: PrimerColors.gray600),
// )
],
if (item.leftWidget != null) ...[
SizedBox(width: 12),
item.leftWidget,
],
2019-09-12 10:30:35 +02:00
SizedBox(width: 12),
2019-09-14 17:48:01 +02:00
Expanded(child: item.text),
if (item.rightWidget != null) item.rightWidget,
if ((item.onTap != null || item.screenBuilder != null) &
!item.hideRightChevron)
Icon(CupertinoIcons.right_chevron,
size: 24, color: PrimerColors.gray400),
SizedBox(width: 4),
]),
),
2019-09-05 11:58:14 +02:00
);
if (item.onTap == null && item.screenBuilder == null) {
return widget;
}
return Link(
onTap: item.onTap,
screenBuilder: item.screenBuilder,
child: widget,
);
}
2019-02-08 16:20:28 +01:00
@override
Widget build(BuildContext context) {
2019-09-04 16:37:22 +02:00
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
2019-09-12 10:30:35 +02:00
if (headerText != null)
Container(
color: PrimerColors.gray100,
padding: EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: Text(
headerText,
style: TextStyle(color: PrimerColors.gray600, fontSize: 13),
),
),
2019-09-14 17:48:01 +02:00
borderView,
...join(BorderView(leftPadding: 44), items.map(_buildItem).toList()),
borderView,
2019-09-04 16:37:22 +02:00
],
2019-02-08 16:20:28 +01:00
);
}
}