基础库
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

19 satır
350 B

  1. typedef Future InitMethod();
  2. class Application {
  3. // 初始化方法
  4. static List<InitMethod> _initMethods = List();
  5. static Future init() async {
  6. for (InitMethod method in _initMethods) {
  7. await method();
  8. }
  9. return Future.delayed(Duration.zero);
  10. }
  11. static addMethod(InitMethod method) {
  12. _initMethods.add(method);
  13. }
  14. }