2020-01-04 19:31:52 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:cake_wallet/palette.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/common/transaction_direction.dart';
|
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
|
|
|
|
class TransactionRow extends StatelessWidget {
|
|
|
|
TransactionRow(
|
|
|
|
{this.direction,
|
|
|
|
this.formattedDate,
|
|
|
|
this.formattedAmount,
|
|
|
|
this.formattedFiatAmount,
|
|
|
|
this.isPending,
|
|
|
|
@required this.onTap});
|
|
|
|
|
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-04-25 16:17:59 +00:00
|
|
|
height: 60,
|
2020-04-18 09:17:52 +00:00
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: PaletteDark.historyPanel,
|
|
|
|
border: Border.all(
|
2020-04-21 14:31:25 +00:00
|
|
|
width: 1,
|
2020-04-18 09:17:52 +00:00
|
|
|
color: PaletteDark.historyPanel
|
|
|
|
),
|
|
|
|
),
|
2020-04-17 19:40:11 +00:00
|
|
|
padding: EdgeInsets.only(top: 5, bottom: 5, left: 20, right: 20),
|
2020-01-04 19:31:52 +00:00
|
|
|
child: Row(children: <Widget>[
|
2020-04-16 18:41:04 +00:00
|
|
|
Container(
|
|
|
|
height: 36,
|
|
|
|
width: 36,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
color: PaletteDark.historyPanelButton
|
|
|
|
),
|
|
|
|
child: Image.asset(
|
|
|
|
direction == TransactionDirection.incoming
|
|
|
|
? 'assets/images/down_arrow.png'
|
|
|
|
: 'assets/images/up_arrow.png'),
|
|
|
|
),
|
2020-01-04 19:31:52 +00:00
|
|
|
Expanded(
|
|
|
|
child: Padding(
|
2020-04-16 18:41:04 +00:00
|
|
|
padding: const EdgeInsets.only(left: 10),
|
2020-01-04 19:31:52 +00:00
|
|
|
child: Column(
|
2020-04-16 18:41:04 +00:00
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
2020-01-04 19:31:52 +00:00
|
|
|
children: <Widget>[
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
(direction == TransactionDirection.incoming
|
|
|
|
? S.of(context).received
|
|
|
|
: S.of(context).sent) +
|
|
|
|
(isPending ? S.of(context).pending : ''),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
2020-04-17 19:40:11 +00:00
|
|
|
color: Colors.white
|
2020-04-16 18:41:04 +00:00
|
|
|
)),
|
|
|
|
Text(direction == TransactionDirection.incoming
|
|
|
|
? formattedAmount
|
|
|
|
: '- ' + formattedAmount,
|
2020-01-04 19:31:52 +00:00
|
|
|
style: const TextStyle(
|
2020-04-17 19:40:11 +00:00
|
|
|
fontSize: 16,
|
|
|
|
color: Colors.white
|
|
|
|
))
|
2020-01-04 19:31:52 +00:00
|
|
|
]),
|
2020-04-16 18:41:04 +00:00
|
|
|
SizedBox(height: 5,),
|
2020-01-04 19:31:52 +00:00
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(formattedDate,
|
|
|
|
style: const TextStyle(
|
2020-04-16 18:41:04 +00:00
|
|
|
fontSize: 14, color: PaletteDark.historyPanelText)),
|
|
|
|
Text(direction == TransactionDirection.incoming
|
|
|
|
? formattedFiatAmount
|
|
|
|
: '- ' + formattedFiatAmount,
|
2020-01-04 19:31:52 +00:00
|
|
|
style: const TextStyle(
|
2020-04-16 18:41:04 +00:00
|
|
|
fontSize: 14, color: PaletteDark.historyPanelText))
|
2020-01-04 19:31:52 +00:00
|
|
|
]),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
))
|
|
|
|
]),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|