基础组件库
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

14 lignes
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. }