diff --git a/lib/features/accounts/screens/account_statement_screen.dart b/lib/features/accounts/screens/account_statement_screen.dart index d2b08cc..e0f9425 100644 --- a/lib/features/accounts/screens/account_statement_screen.dart +++ b/lib/features/accounts/screens/account_statement_screen.dart @@ -491,7 +491,7 @@ class _AccountStatementScreen extends State { } } // Add for IOS - else if (Platform.isIOS) { +else if (Platform.isIOS) { // On iOS, we save to a temporary directory and then open the share sheet. final tempDir = await getTemporaryDirectory(); final file = await File('${tempDir.path}/$fileName').create(); @@ -500,7 +500,6 @@ class _AccountStatementScreen extends State { // Use share_plus to open the iOS share dialog await Share.shareXFiles( [XFile(file.path)], - text: 'Account Statement', ); }