This commit is contained in:
wyf
2025-05-24 17:02:47 +08:00
parent acfb262812
commit 3d45b7d991
22 changed files with 2990 additions and 1649 deletions

View File

@@ -98,14 +98,14 @@ class _BlueteethDevicePageState extends State<BlueteethDevicePage> {
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("权限提示"),
content: Text("应用需要蓝牙和位置权限才能扫描设备。请授予权限。"),
title: Text("权限提示".tr),
content: Text("应用需要蓝牙和位置权限才能扫描设备。请授予权限。".tr),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: Text("确定"),
child: Text("确定".tr),
),
],
);