2022-09-19 17:37:27 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-09-22 23:48:50 +00:00
|
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
2022-09-19 17:37:27 +00:00
|
|
|
import 'package:stackwallet/widgets/expandable.dart';
|
|
|
|
import 'package:stackwallet/widgets/table_view/table_view_cell.dart';
|
|
|
|
|
2022-11-28 21:21:18 +00:00
|
|
|
class TableViewRow extends StatefulWidget {
|
2022-09-19 17:37:27 +00:00
|
|
|
const TableViewRow({
|
|
|
|
Key? key,
|
|
|
|
required this.cells,
|
|
|
|
required this.expandingChild,
|
|
|
|
this.decoration,
|
|
|
|
this.onExpandChanged,
|
|
|
|
this.padding = const EdgeInsets.all(0),
|
2022-09-25 17:25:57 +00:00
|
|
|
this.spacing = 0.0,
|
2022-09-25 19:53:08 +00:00
|
|
|
this.crossAxisAlignment = CrossAxisAlignment.center,
|
2022-09-19 17:37:27 +00:00
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final List<TableViewCell> cells;
|
|
|
|
final Widget? expandingChild;
|
2022-11-28 21:21:18 +00:00
|
|
|
final BoxDecoration? decoration;
|
2022-09-19 17:37:27 +00:00
|
|
|
final void Function(ExpandableState)? onExpandChanged;
|
|
|
|
final EdgeInsetsGeometry padding;
|
2022-09-25 17:25:57 +00:00
|
|
|
final double spacing;
|
2022-09-25 19:53:08 +00:00
|
|
|
final CrossAxisAlignment crossAxisAlignment;
|
2022-09-19 17:37:27 +00:00
|
|
|
|
2022-11-28 21:21:18 +00:00
|
|
|
@override
|
|
|
|
State<TableViewRow> createState() => _TableViewRowState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _TableViewRowState extends State<TableViewRow> {
|
|
|
|
late final List<TableViewCell> cells;
|
|
|
|
late final Widget? expandingChild;
|
|
|
|
late final BoxDecoration? decoration;
|
|
|
|
late final void Function(ExpandableState)? onExpandChanged;
|
|
|
|
late final EdgeInsetsGeometry padding;
|
|
|
|
late final double spacing;
|
|
|
|
late final CrossAxisAlignment crossAxisAlignment;
|
|
|
|
|
|
|
|
bool _hovering = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
cells = widget.cells;
|
|
|
|
expandingChild = widget.expandingChild;
|
|
|
|
decoration = widget.decoration;
|
|
|
|
onExpandChanged = widget.onExpandChanged;
|
|
|
|
padding = widget.padding;
|
|
|
|
spacing = widget.spacing;
|
|
|
|
crossAxisAlignment = widget.crossAxisAlignment;
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2022-09-19 17:37:27 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Container(
|
2022-11-28 21:21:18 +00:00
|
|
|
decoration: !_hovering
|
|
|
|
? decoration
|
|
|
|
: decoration?.copyWith(
|
|
|
|
boxShadow: [
|
|
|
|
Theme.of(context).extension<StackColors>()!.standardBoxShadow,
|
|
|
|
Theme.of(context).extension<StackColors>()!.standardBoxShadow,
|
|
|
|
],
|
|
|
|
),
|
2022-09-19 17:37:27 +00:00
|
|
|
child: expandingChild == null
|
2022-11-28 21:21:18 +00:00
|
|
|
? MouseRegion(
|
|
|
|
onEnter: (_) {
|
|
|
|
setState(() {
|
|
|
|
_hovering = true;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onExit: (_) {
|
|
|
|
setState(() {
|
|
|
|
_hovering = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
child: Padding(
|
2022-09-19 17:37:27 +00:00
|
|
|
padding: padding,
|
|
|
|
child: Row(
|
2022-11-28 21:21:18 +00:00
|
|
|
crossAxisAlignment: crossAxisAlignment,
|
2022-09-19 17:37:27 +00:00
|
|
|
children: [
|
2022-09-25 17:25:57 +00:00
|
|
|
for (int i = 0; i < cells.length; i++) ...[
|
2022-09-25 19:53:08 +00:00
|
|
|
if (i != 0 && i != cells.length)
|
2022-09-25 17:25:57 +00:00
|
|
|
SizedBox(
|
|
|
|
width: spacing,
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
flex: cells[i].flex,
|
|
|
|
child: cells[i],
|
2022-09-19 17:37:27 +00:00
|
|
|
),
|
2022-09-25 17:25:57 +00:00
|
|
|
],
|
2022-09-19 17:37:27 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2022-11-28 21:21:18 +00:00
|
|
|
)
|
|
|
|
: Expandable(
|
|
|
|
onExpandChanged: onExpandChanged,
|
|
|
|
header: MouseRegion(
|
|
|
|
onEnter: (_) {
|
|
|
|
setState(() {
|
|
|
|
_hovering = true;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onExit: (_) {
|
|
|
|
setState(() {
|
|
|
|
_hovering = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
child: Padding(
|
|
|
|
padding: padding,
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
for (int i = 0; i < cells.length; i++) ...[
|
|
|
|
if (i != 0 && i != cells.length)
|
|
|
|
SizedBox(
|
|
|
|
width: spacing,
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
flex: cells[i].flex,
|
|
|
|
child: cells[i],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2022-09-19 17:37:27 +00:00
|
|
|
body: Column(
|
|
|
|
children: [
|
|
|
|
Container(
|
2022-09-22 23:48:50 +00:00
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.buttonBackSecondary,
|
2022-09-19 17:37:27 +00:00
|
|
|
width: double.infinity,
|
|
|
|
height: 1,
|
|
|
|
),
|
|
|
|
expandingChild!,
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|