新增赛事信息页
This commit is contained in:
@@ -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('确定'),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user