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; int selectedIndex = widget.selectedIndex;
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(AppLocalizations.of(context)
AppLocalizations.of(context).accountInfo, .accountInfo
), .replaceFirst(RegExp('\n'), '')),
), ),
body: ListView( body: ListView(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),