Skip to content

Commit

Permalink
fix: typesetting (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowrt authored Feb 6, 2025
1 parent c8d69d5 commit 07be494
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions lib/app/dpip.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,11 @@ class _DpipState extends State<Dpip> {
return AlertDialog(
icon: const Icon(Symbols.signal_disconnected_rounded),
title: Text(context.i18n.abnormal),
content: Text(context.i18n.network_or_server_error),
actionsAlignment: MainAxisAlignment.spaceBetween,
content: Text(
context.i18n.network_or_server_error,
textAlign: TextAlign.center,
),
actionsAlignment: MainAxisAlignment.spaceAround,
actions: [
TextButton(
child: Text(context.i18n.retry),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: dpip
description: "Disaster Prevention Information Platform"
publish_to: 'none'
version: 2.5.0
version: 2.5.500

environment:
sdk: '>=3.3.1 <4.0.0'
Expand Down

0 comments on commit 07be494

Please sign in to comment.