stack_wallet/lib/widgets/table_view/table_view_row.dart

123 lines
3.8 KiB
Dart
Raw Normal View History

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