13 lines
590 B
Dart
13 lines
590 B
Dart
import 'package:get/get.dart';
|
|
|
|
class AppToastMessages {
|
|
static String loading = '加载中...'.tr;
|
|
static String notLocationPermission = '蓝牙权限被拒绝,请在应用设置页面开启蓝牙权限'.tr;
|
|
static String notBluetoothPermissions = '蓝牙权限被拒绝,请在应用设置页面开启蓝牙权限'.tr;
|
|
static String notInputTeamCode = '请先输入团队码'.tr;
|
|
static String notInputName = '请先输入您的姓名'.tr;
|
|
|
|
static String notSelectUseCase = '请先选择使用场景'.tr;
|
|
static String notInputTeamName = '请先输入团队名称'.tr;
|
|
}
|