CWA-198 | fixed borders of date_section_raw, trade_raw and transaction_raw
Oleksandr Sobol committed
Apr 18, 2020 at 12:17 UTC
b3673d7c6359e61d61643866f52d6378874fff3a
3 files changed
+21
-3
lib/src/screens/dashboard/widgets/date_section_raw.dart
+7
-1
@@ -38,7 +38,13 @@ class DateSectionRaw extends StatelessWidget {
38
return Container(
39
padding: EdgeInsets.only(top: 10, bottom: 10, left: 20, right: 20),
40
alignment: Alignment.center,
41
- color: PaletteDark.historyPanel,
41
+ decoration: BoxDecoration(
42
+ color: PaletteDark.historyPanel,
43
+ border: Border.all(
44
+ width: 1,
45
+ color: PaletteDark.historyPanel
46
+ ),
47
+ ),
48
child: Text(title,
49
style: TextStyle(fontSize: 12, color: PaletteDark.historyPanelText))
50
);
lib/src/screens/dashboard/widgets/trade_row.dart
+7
-1
@@ -26,7 +26,13 @@ class TradeRow extends StatelessWidget {
26
return InkWell(
27
onTap: onTap,
28
child: Container(
29
- color: PaletteDark.historyPanel,
29
+ decoration: BoxDecoration(
30
+ color: PaletteDark.historyPanel,
31
+ border: Border.all(
32
+ width: 0.5,
33
+ color: PaletteDark.historyPanel
34
+ ),
35
+ ),
36
padding: EdgeInsets.only(top: 5, bottom: 5, left: 20, right: 20),
37
child: Row(children: <Widget>[
38
Container(
lib/src/screens/dashboard/widgets/transaction_raw.dart
+7
-1
@@ -24,7 +24,13 @@ class TransactionRow extends StatelessWidget {
24
return InkWell(
25
onTap: onTap,
26
child: Container(
27
- color: PaletteDark.historyPanel,
27
+ decoration: BoxDecoration(
28
+ color: PaletteDark.historyPanel,
29
+ border: Border.all(
30
+ width: 0.5,
31
+ color: PaletteDark.historyPanel
32
+ ),
33
+ ),
34
padding: EdgeInsets.only(top: 5, bottom: 5, left: 20, right: 20),
35
child: Row(children: <Widget>[
36
Container(