You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
16 lines
344 B
/// The current Flutter platform supports only 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 miniWeb = 6;
|
|
static const linux = 7;
|
|
static const androidPad = 8;
|
|
static const ipad = 9;
|
|
}
|
|
|