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(