FIX_bug 2

This commit is contained in:
sanjeev.p 2026-04-04 17:32:40 +05:30
parent 2347ec43a4
commit 6c91f141d5

View File

@ -1016,20 +1016,28 @@ class _PayoutReportScreenState extends ConsumerState<PayoutReportScreen> {
),
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(