Skip to content

Commit dc49661

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: lib/widgets/home.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ 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()),
217+
),
216218
const SizedBox(height: 8),
217219
ElevatedButton(
218220
onPressed: () => Navigator.push(context,

0 commit comments

Comments
 (0)