This commit is contained in:
agrapine
2019-08-07 15:37:44 +01:00
commit 810d060d44
84 changed files with 2114 additions and 0 deletions

13
lib/ux.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'dart:async';
import 'package:flutter/services.dart';
class Ux {
static const MethodChannel _channel =
const MethodChannel('ux');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}