mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-08 20:09:24 +00:00
CWA-198 | fixed borders of date_section_raw, trade_raw and transaction_raw
This commit is contained in:
parent
a260ed7cea
commit
b3673d7c63
3 changed files with 21 additions and 3 deletions
|
@ -38,7 +38,13 @@ class DateSectionRaw extends StatelessWidget {
|
|||
return Container(
|
||||
padding: EdgeInsets.only(top: 10, bottom: 10, left: 20, right: 20),
|
||||
alignment: Alignment.center,
|
||||
color: PaletteDark.historyPanel,
|
||||
decoration: BoxDecoration(
|
||||
color: PaletteDark.historyPanel,
|
||||
border: Border.all(
|
||||
width: 1,
|
||||
color: PaletteDark.historyPanel
|
||||
),
|
||||
),
|
||||
child: Text(title,
|
||||
style: TextStyle(fontSize: 12, color: PaletteDark.historyPanelText))
|
||||
);
|
||||
|
|
|
@ -26,7 +26,13 @@ class TradeRow extends StatelessWidget {
|
|||
return InkWell(
|
||||
onTap: onTap,
|
||||
child: Container(
|
||||
color: PaletteDark.historyPanel,
|
||||
decoration: BoxDecoration(
|
||||
color: PaletteDark.historyPanel,
|
||||
border: Border.all(
|
||||
width: 0.5,
|
||||
color: PaletteDark.historyPanel
|
||||
),
|
||||
),
|
||||
padding: EdgeInsets.only(top: 5, bottom: 5, left: 20, right: 20),
|
||||
child: Row(children: <Widget>[
|
||||
Container(
|
||||
|
|
|
@ -24,7 +24,13 @@ class TransactionRow extends StatelessWidget {
|
|||
return InkWell(
|
||||
onTap: onTap,
|
||||
child: Container(
|
||||
color: PaletteDark.historyPanel,
|
||||
decoration: BoxDecoration(
|
||||
color: PaletteDark.historyPanel,
|
||||
border: Border.all(
|
||||
width: 0.5,
|
||||
color: PaletteDark.historyPanel
|
||||
),
|
||||
),
|
||||
padding: EdgeInsets.only(top: 5, bottom: 5, left: 20, right: 20),
|
||||
child: Row(children: <Widget>[
|
||||
Container(
|
||||
|
|
Loading…
Reference in a new issue