feat:添加国际化
This commit is contained in:
parent
a5a9b9e4fd
commit
4a7c825640
@ -853,6 +853,7 @@
|
|||||||
"开锁事件":"Unlock event",
|
"开锁事件":"Unlock event",
|
||||||
"异常事件":"Abnormal event",
|
"异常事件":"Abnormal event",
|
||||||
"门铃事件":"Doorbell event",
|
"门铃事件":"Doorbell event",
|
||||||
"视频事件":"Video event"
|
"视频事件":"Video event",
|
||||||
|
"请开启蓝牙":"Please turn on Bluetooth"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -881,5 +881,6 @@
|
|||||||
"开锁事件":"开锁事件",
|
"开锁事件":"开锁事件",
|
||||||
"异常事件":"异常事件",
|
"异常事件":"异常事件",
|
||||||
"门铃事件":"门铃事件",
|
"门铃事件":"门铃事件",
|
||||||
"视频事件":"视频事件"
|
"视频事件":"视频事件",
|
||||||
|
"请开启蓝牙":"请开启蓝牙"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -851,5 +851,6 @@
|
|||||||
"开锁事件":"开锁事件",
|
"开锁事件":"开锁事件",
|
||||||
"异常事件":"异常事件",
|
"异常事件":"异常事件",
|
||||||
"门铃事件":"门铃事件",
|
"门铃事件":"门铃事件",
|
||||||
"视频事件":"视频事件"
|
"视频事件":"视频事件",
|
||||||
|
"请开启蓝牙":"请开启蓝牙"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,13 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:app_settings/app_settings.dart';
|
||||||
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:star_lock/app_settings/app_settings.dart';
|
import 'package:star_lock/app_settings/app_settings.dart';
|
||||||
|
import 'package:star_lock/tools/showTipView.dart';
|
||||||
|
import 'package:star_lock/widget/permission/permission_dialog.dart';
|
||||||
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
import 'io_tool/io_model.dart';
|
import 'io_tool/io_model.dart';
|
||||||
import 'io_tool/io_tool.dart';
|
import 'io_tool/io_tool.dart';
|
||||||
@ -657,12 +661,11 @@ class BlueManage {
|
|||||||
// 写入
|
// 写入
|
||||||
Future<void> writeNull() async {
|
Future<void> writeNull() async {
|
||||||
List<BluetoothService> services =
|
List<BluetoothService> services =
|
||||||
await bluetoothConnectDevice!.discoverServices();
|
await bluetoothConnectDevice!.discoverServices();
|
||||||
for (BluetoothService service in services) {
|
for (BluetoothService service in services) {
|
||||||
if (service.uuid == _serviceIdConnect) {
|
if (service.uuid == _serviceIdConnect) {
|
||||||
for (BluetoothCharacteristic characteristic
|
for (BluetoothCharacteristic characteristic
|
||||||
in service.characteristics) {
|
in service.characteristics) {
|
||||||
|
|
||||||
if (characteristic.characteristicUuid == _characteristicIdWrite) {
|
if (characteristic.characteristicUuid == _characteristicIdWrite) {
|
||||||
try {
|
try {
|
||||||
List<int> valueList = [1];
|
List<int> valueList = [1];
|
||||||
@ -739,7 +742,7 @@ class BlueManage {
|
|||||||
await FlutterBluePlus.turnOn();
|
await FlutterBluePlus.turnOn();
|
||||||
}
|
}
|
||||||
if (Platform.isIOS) {
|
if (Platform.isIOS) {
|
||||||
EasyLoading.showToast("请开启蓝牙", duration: 2000.milliseconds);
|
EasyLoading.showToast("请开启蓝牙".tr, duration: 2000.milliseconds);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user