From 0a59a4c322914a38f9c54be397add595a707b32b Mon Sep 17 00:00:00 2001 From: Zied Dahmani Date: Tue, 27 Aug 2024 17:22:44 +0100 Subject: [PATCH] fix: set AppBar scrolledUnderElevation to 0 --- lib/ui/history/details/components/transaction_detail_view.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ui/history/details/components/transaction_detail_view.dart b/lib/ui/history/details/components/transaction_detail_view.dart index c96787b5..614b55de 100644 --- a/lib/ui/history/details/components/transaction_detail_view.dart +++ b/lib/ui/history/details/components/transaction_detail_view.dart @@ -21,6 +21,7 @@ class TransactionDetailView extends StatelessWidget { child: Scaffold( backgroundColor: HyphaColors.transparent, appBar: AppBar( + scrolledUnderElevation: 0, centerTitle: true, title: Text('Transaction Details', style: context.hyphaTextTheme.smallTitles), backgroundColor: HyphaColors.transparent,