CWA-198 | fixed borders of date_section_raw, trade_raw and transaction_raw

This commit is contained in:
Oleksandr Sobol 2020-04-18 12:17:52 +03:00
parent a260ed7cea
commit b3673d7c63
3 changed files with 21 additions and 3 deletions

View file

@ -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))
);

View file

@ -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(

View file

@ -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(