removed the newline from title bar

This commit is contained in:
asif
2025-09-04 01:24:14 +05:30
parent cf8964ca36
commit d6a99ea295

View File

@@ -30,9 +30,9 @@ class _AccountInfoScreen extends State<AccountInfoScreen> {
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),