新增赛事信息页

This commit is contained in:
2026-07-09 14:57:09 +08:00
parent c38f6d69c8
commit 75c42ea168
4 changed files with 365 additions and 7 deletions
+4 -4
View File
@@ -250,16 +250,16 @@ class WebviewPageState extends State<WebviewPage> {
final ok = await showDialog<bool>(
context: context,
builder: (context) => AlertDialog(
title: const Text("提示"),
content: const Text("是否返回上一页?"),
title: const Text('提示'),
content: const Text('是否返回上一页?'),
actions: [
TextButton(
onPressed: () => Navigator.of(context).pop(false),
child: const Text("取消"),
child: const Text('取消'),
),
TextButton(
onPressed: () => Navigator.of(context).pop(true),
child: const Text("确定"),
child: const Text('确定'),
),
],
),