2020-01-04 19:31:52 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/entities/transaction_direction.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
|
|
|
|
class TransactionRow extends StatelessWidget {
|
2020-09-26 11:17:39 +00:00
|
|
|
TransactionRow(
|
|
|
|
{this.direction,
|
|
|
|
this.formattedDate,
|
|
|
|
this.formattedAmount,
|
|
|
|
this.formattedFiatAmount,
|
|
|
|
this.isPending,
|
|
|
|
@required this.onTap});
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
final VoidCallback onTap;
|
|
|
|
final TransactionDirection direction;
|
|
|
|
final String formattedDate;
|
|
|
|
final String formattedAmount;
|
|
|
|
final String formattedFiatAmount;
|
|
|
|
final bool isPending;
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return InkWell(
|
|
|
|
onTap: onTap,
|
|
|
|
child: Container(
|
2020-09-26 11:17:39 +00:00
|
|
|
height: 62,
|
2020-07-22 10:04:11 +00:00
|
|
|
color: Colors.transparent,
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24),
|
|
|
|
child: Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Expanded(
|
2020-09-26 11:17:39 +00:00
|
|
|
child: Container(
|
|
|
|
height: 56,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
children: <Widget>[
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
(direction == TransactionDirection.incoming
|
2020-07-22 10:04:11 +00:00
|
|
|
? S.of(context).received
|
|
|
|
: S.of(context).sent) +
|
2020-09-26 11:17:39 +00:00
|
|
|
(isPending ? S.of(context).pending : ''),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Colors.white)),
|
|
|
|
Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.all(Radius.circular(10)),
|
|
|
|
color: (direction ==
|
|
|
|
TransactionDirection.incoming
|
|
|
|
? Colors.green.withOpacity(0.8)
|
|
|
|
: Theme.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.body2
|
|
|
|
.decorationColor
|
|
|
|
.withOpacity(0.8))),
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
top: 3, bottom: 3, left: 10, right: 10),
|
|
|
|
child: Text(formattedAmount,
|
2020-07-22 10:04:11 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.w500,
|
2020-09-26 11:17:39 +00:00
|
|
|
color: Colors.white)))
|
|
|
|
]),
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(formattedDate,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.textTheme
|
|
|
|
.overline
|
|
|
|
.backgroundColor)),
|
|
|
|
Text(formattedFiatAmount,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.textTheme
|
|
|
|
.overline
|
|
|
|
.backgroundColor))
|
|
|
|
]),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
2020-07-22 10:04:11 +00:00
|
|
|
]),
|
2020-01-04 19:31:52 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|