From 0f61b7a30a1a431625d95542cc90e70aa7d26649 Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Tue, 3 Jun 2025 10:25:27 +0200 Subject: [PATCH] remove title in claim tool body --- .../patient_claim_or_statement.dart | 59 ------------------- 1 file changed, 59 deletions(-) diff --git a/Frontend/lib/mih_packages/patient_profile/pat_profile/package_tools/patient_claim_or_statement.dart b/Frontend/lib/mih_packages/patient_profile/pat_profile/package_tools/patient_claim_or_statement.dart index ba1b7d16..82b5c932 100644 --- a/Frontend/lib/mih_packages/patient_profile/pat_profile/package_tools/patient_claim_or_statement.dart +++ b/Frontend/lib/mih_packages/patient_profile/pat_profile/package_tools/patient_claim_or_statement.dart @@ -54,44 +54,6 @@ class _PatientClaimOrStatementState extends State { ); } - List setIcons() { - if (widget.type == "personal") { - return [ - Text( - "Claims/ Statements", - textAlign: TextAlign.center, - style: TextStyle( - fontSize: 25, - fontWeight: FontWeight.bold, - color: MzanziInnovationHub.of(context)!.theme.secondaryColor(), - ), - ), - ]; - } else { - return [ - Text( - "Claims/ Statements", - textAlign: TextAlign.center, - style: TextStyle( - fontSize: 25, - fontWeight: FontWeight.bold, - color: MzanziInnovationHub.of(context)!.theme.secondaryColor(), - ), - ), - IconButton( - onPressed: () { - // new window to input fields for claim/ statements - claimOrStatementWindow(); - }, - icon: Icon( - Icons.add, - color: MzanziInnovationHub.of(context)!.theme.secondaryColor(), - ), - ) - ]; - } - } - @override void initState() { if (widget.business == null) { @@ -133,27 +95,6 @@ class _PatientClaimOrStatementState extends State { final filesList = snapshot.data!; return Column( children: [ - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - "Claims/ Statements", - textAlign: TextAlign.center, - style: TextStyle( - fontSize: 25, - fontWeight: FontWeight.bold, - color: MzanziInnovationHub.of(context)! - .theme - .secondaryColor(), - ), - ), - ], - ), - Divider( - color: MzanziInnovationHub.of(context)! - .theme - .secondaryColor()), - const SizedBox(height: 10), //const Placeholder(), BuildClaimStatementFileList( files: filesList,