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

106 lines
2.7 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;
final Widget leftWidget;
final Widget rightWidget;
2019-02-08 16:20:28 +01:00
final void Function() onTap;
final WidgetBuilder screenBuilder;
TableViewItem({
this.text,
2019-09-04 16:59:33 +02:00
this.leftWidget,
this.rightWidget,
2019-02-08 16:20:28 +01:00
this.onTap,
this.screenBuilder,
});
}
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});
static const _border = SizedBox(
height: 1,
child: const DecoratedBox(
decoration: const BoxDecoration(color: PrimerColors.gray200),
),
);
static const _seperator = SizedBox(
height: 1,
child: const DecoratedBox(
decoration: const BoxDecoration(color: PrimerColors.gray200),
),
);
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>[
...(headerText == null
? []
: [
Container(
color: PrimerColors.gray100,
padding: EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: Text(
headerText,
style: TextStyle(color: PrimerColors.gray600, fontSize: 13),
),
)
]),
_border,
...join(
_seperator,
items.map((item) {
2019-02-08 16:20:28 +01:00
return Link(
onTap: item.onTap,
2019-02-08 16:20:28 +01:00
screenBuilder: item.screenBuilder,
child: Container(
2019-09-04 16:37:22 +02:00
height: 44,
child: Row(children: [
2019-09-04 16:59:33 +02:00
...(item.leftWidget == null
? []
: [
SizedBox(width: 12),
item.leftWidget,
]),
2019-09-04 16:37:22 +02:00
SizedBox(width: 12),
Expanded(
2019-09-04 16:59:33 +02:00
child: DefaultTextStyle(
child: item.text,
style:
TextStyle(fontSize: 18, color: PrimerColors.gray900),
2019-09-04 16:37:22 +02:00
),
),
2019-09-04 16:59:33 +02:00
...(item.rightWidget == null ? [] : [item.rightWidget]),
2019-09-04 16:37:22 +02:00
SizedBox(width: 12),
]),
2019-02-08 16:20:28 +01:00
),
);
2019-09-04 16:37:22 +02:00
}).toList(),
),
_border,
],
2019-02-08 16:20:28 +01:00
);
}
}