Skip to content

Commit 4f438d3

Browse files
KYash03gnprice
authored andcommitted
home: Center align the "try another account" message in loading placeholder
Fixes zulip#1246.
1 parent 7cd25f2 commit 4f438d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/widgets/home.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ class _LoadingPlaceholderPageState extends State<_LoadingPlaceholderPage> {
212212
child: Column(
213213
children: [
214214
const SizedBox(height: 16),
215-
Text(zulipLocalizations.tryAnotherAccountMessage(account.realmUrl.toString())),
215+
Text(textAlign: TextAlign.center,
216+
zulipLocalizations.tryAnotherAccountMessage(account.realmUrl.toString())),
216217
const SizedBox(height: 8),
217218
ElevatedButton(
218219
onPressed: () => Navigator.push(context,

0 commit comments

Comments
 (0)