From 6c91f141d55a21b331609122d1934e4351434f4a Mon Sep 17 00:00:00 2001 From: "sanjeev.p" Date: Sat, 4 Apr 2026 17:32:40 +0530 Subject: [PATCH] FIX_bug 2 --- .../screens/payout/payout_report.dart | 28 ++++++++++++------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/lib/presentation/screens/payout/payout_report.dart b/lib/presentation/screens/payout/payout_report.dart index 9bccb6e..70f076c 100644 --- a/lib/presentation/screens/payout/payout_report.dart +++ b/lib/presentation/screens/payout/payout_report.dart @@ -1016,20 +1016,28 @@ class _PayoutReportScreenState extends ConsumerState { ), Expanded( flex: 2, - child: Text( - _cell(item, ['premium']), - style: rowStyle, - maxLines: 2, - overflow: TextOverflow.ellipsis, + child: Align( + alignment: Alignment.topRight, + child: Text( + _cell(item, ['premium']), + style: rowStyle, + textAlign: TextAlign.right, + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), ), ), Expanded( flex: 2, - child: Text( - _cell(item, ['commission_amount']), - style: rowStyle, - maxLines: 2, - overflow: TextOverflow.ellipsis, + child: Align( + alignment: Alignment.topRight, + child: Text( + _cell(item, ['commission_amount']), + style: rowStyle, + textAlign: TextAlign.right, + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), ), ), Expanded(