16 lines
330 B
Dart
16 lines
330 B
Dart
/// 当前flutter平台仅支持Android/ios
|
|
class IMPlatform {
|
|
/// IOS
|
|
static const ios = 1;
|
|
|
|
/// Android
|
|
static const android = 2;
|
|
static const windows = 3;
|
|
static const xos = 4;
|
|
static const web = 5;
|
|
static const mini_web = 6;
|
|
static const linux = 7;
|
|
static const android_pad = 8;
|
|
static const ipad = 9;
|
|
}
|