diff --git a/apps/mobile/packages/features/client/orders/analyze.txt b/apps/mobile/packages/features/client/orders/analyze.txt deleted file mode 100644 index 28d6d1d5..00000000 Binary files a/apps/mobile/packages/features/client/orders/analyze.txt and /dev/null differ diff --git a/apps/mobile/packages/features/client/orders/analyze_output.txt b/apps/mobile/packages/features/client/orders/analyze_output.txt deleted file mode 100644 index 4c48dc48..00000000 Binary files a/apps/mobile/packages/features/client/orders/analyze_output.txt and /dev/null differ diff --git a/apps/mobile/packages/features/client/orders/view_orders/lib/src/presentation/widgets/view_order_card.dart b/apps/mobile/packages/features/client/orders/view_orders/lib/src/presentation/widgets/view_order_card.dart index 689ec491..ca085684 100644 --- a/apps/mobile/packages/features/client/orders/view_orders/lib/src/presentation/widgets/view_order_card.dart +++ b/apps/mobile/packages/features/client/orders/view_orders/lib/src/presentation/widgets/view_order_card.dart @@ -161,14 +161,7 @@ class _ViewOrderCardState extends State { decoration: BoxDecoration( color: UiColors.white, borderRadius: UiConstants.radiusLg, - border: Border.all(color: UiColors.border), - boxShadow: [ - BoxShadow( - color: UiColors.black.withValues(alpha: 0.04), - blurRadius: 8, - offset: const Offset(0, 2), - ), - ], + border: Border.all(color: UiColors.border, width: 0.5), ), child: Column( children: [ @@ -249,9 +242,12 @@ class _ViewOrderCardState extends State { size: 14, color: UiColors.iconSecondary, ), - Text( - order.eventName, - style: UiTypography.headline5m.textSecondary, + Expanded( + child: Text( + order.eventName, + style: UiTypography.headline5m.textSecondary, + overflow: TextOverflow.ellipsis, + ), ), ], ), @@ -313,7 +309,8 @@ class _ViewOrderCardState extends State { Expanded( child: Text( order.hubManagerName!, - style: UiTypography.footnote2r.textSecondary, + style: + UiTypography.footnote2r.textSecondary, maxLines: 1, overflow: TextOverflow.ellipsis, ), @@ -335,7 +332,8 @@ class _ViewOrderCardState extends State { bgColor: UiColors.primary.withValues(alpha: 0.08), onTap: () => _openEditSheet(order: order), ), - if (_canEditOrder(order)) const SizedBox(width: UiConstants.space2), + if (_canEditOrder(order)) + const SizedBox(width: UiConstants.space2), if (order.confirmedApps.isNotEmpty) _buildHeaderIconButton( icon: _expanded diff --git a/apps/mobile/packages/features/client/reports/lib/src/presentation/blocs/daily_ops/daily_ops_bloc.dart b/apps/mobile/packages/features/client/reports/lib/src/presentation/blocs/daily_ops/daily_ops_bloc.dart index 943553bb..06f54dcb 100644 --- a/apps/mobile/packages/features/client/reports/lib/src/presentation/blocs/daily_ops/daily_ops_bloc.dart +++ b/apps/mobile/packages/features/client/reports/lib/src/presentation/blocs/daily_ops/daily_ops_bloc.dart @@ -1,5 +1,6 @@ import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:krow_domain/src/entities/reports/daily_ops_report.dart'; +import 'package:krow_domain/krow_domain.dart'; + import '../../../domain/repositories/reports_repository.dart'; import 'daily_ops_event.dart'; import 'daily_ops_state.dart';