layout fix
Robert Malikowski committed
Jul 3, 2026 at 14:55 UTC
7b17459ed00baded5be3c42bcbe58f76c8f4772d
1 file changed
+3
-2
lib/new-ui/widgets/coins_page/assets_history/history_top_bar.dart
+3
-2
@@ -20,12 +20,12 @@ class HistoryTopBar extends StatelessWidget {
20
decoration: BoxDecoration(
21
borderRadius: BorderRadius.vertical(
22
top: Radius.circular(18),
23
- bottom: roundedBottom ? Radius.zero : Radius.circular(18)
23
+ bottom: roundedBottom ? Radius.circular(18) : Radius.zero
24
),
25
color: Theme.of(context).colorScheme.surfaceContainer),
26
child: Padding(
27
padding: EdgeInsets.symmetric(
28
- vertical: 8,
28
+ vertical: 4,
29
horizontal: 12,
30
),
31
child: Column(
@@ -43,6 +43,7 @@ class HistoryTopBar extends StatelessWidget {
43
)
44
],
45
),
46
+ if(!roundedBottom)
47
Container(
48
height: 1,
49
width: double.infinity,