From d6a99ea29569ab5d02839e2914a247d96f6e7ea9 Mon Sep 17 00:00:00 2001 From: asif Date: Thu, 4 Sep 2025 01:24:14 +0530 Subject: [PATCH] removed the newline from title bar --- lib/features/accounts/screens/account_info_screen.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/features/accounts/screens/account_info_screen.dart b/lib/features/accounts/screens/account_info_screen.dart index 7a9d06e..0bd6567 100644 --- a/lib/features/accounts/screens/account_info_screen.dart +++ b/lib/features/accounts/screens/account_info_screen.dart @@ -30,9 +30,9 @@ class _AccountInfoScreen extends State { int selectedIndex = widget.selectedIndex; return Scaffold( appBar: AppBar( - title: Text( - AppLocalizations.of(context).accountInfo, - ), + title: Text(AppLocalizations.of(context) + .accountInfo + .replaceFirst(RegExp('\n'), '')), ), body: ListView( padding: const EdgeInsets.all(16.0),