Skip to content

Commit 21e496b

Browse files
committed
home: Center align the "try another account" message in loading placeholder
Fixes #1246
1 parent 7659479 commit 21e496b

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)