基础组件库
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

14 líneas
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. }