|
|
|
|
@ -355,7 +355,7 @@ class ItemResultCardWidgetWithParams extends StatelessWidget {
|
|
|
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
|
|
|
border: BorderDirectional(
|
|
|
|
|
start: BorderSide(
|
|
|
|
|
color: getColorForResultType(type),
|
|
|
|
|
color: shouldShowResultBarAndGraph ? getColorForResultType(type) : Colors.grey.shade700,
|
|
|
|
|
width: MediaQuery.of(context).size.width * 0.015,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
@ -402,7 +402,7 @@ class ItemResultCardWidgetWithParams extends StatelessWidget {
|
|
|
|
|
Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
ResultStatusWidget(type: type),
|
|
|
|
|
shouldShowResultBarAndGraph ? ResultStatusWidget(type: type) : SizedBox.shrink(),
|
|
|
|
|
SizedBox(width: 5),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
|