From 4974e029563e159578436f250034807db447ed4a Mon Sep 17 00:00:00 2001 From: sindhu Date: Mon, 22 Jan 2024 10:51:07 +0700 Subject: [PATCH] step 32 : change alignmnet right total in history --- .../transaksi/history_transaksi_screen.dart | 33 +++++++------------ 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/app_petty_cash/lib/screen/transaksi/history_transaksi_screen.dart b/app_petty_cash/lib/screen/transaksi/history_transaksi_screen.dart index ba19494..c7cf18a 100644 --- a/app_petty_cash/lib/screen/transaksi/history_transaksi_screen.dart +++ b/app_petty_cash/lib/screen/transaksi/history_transaksi_screen.dart @@ -1105,28 +1105,17 @@ class HistoryTransaksiScreen extends HookConsumerWidget { x: 4, ), ), - Container( - // width: 100, - width: Constant.getActualXPhone( - context: context, x: 100), - child: Column( - crossAxisAlignment: - CrossAxisAlignment.start, - children: [ - Text( - ref - .read(currentHistoryTotalProvider - .notifier) - .state - .totalAll - .toString(), - style: Constant.body1(context: context) - .copyWith( - fontWeight: FontWeight.w600, - color: Constant.pcBtnBackgroundColor, - ), - ), - ], + Text( + ref + .read(currentHistoryTotalProvider + .notifier) + .state + .totalAll + .toString(), + style: Constant.body1(context: context) + .copyWith( + fontWeight: FontWeight.w600, + color: Constant.pcBtnBackgroundColor, ), ) ],