基础库
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.

application.dart 350 B

hace 4 años
123456789101112131415161718
  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. }