基础组件库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

14 行
336 B

  1. import 'dart:async';
  2. import 'package:flutter/services.dart';
  3. class ZhiyingBaseWidget {
  4. static const MethodChannel _channel =
  5. const MethodChannel('zhiying_base_widget');
  6. static Future<String> get platformVersion async {
  7. final String version = await _channel.invokeMethod('getPlatformVersion');
  8. return version;
  9. }
  10. }