mvps.dart 318 B

12345678910111213141516171819
  1. import 'package:flutter/material.dart';
  2. import 'i_lifecycle.dart';
  3. abstract class IMvpView {
  4. BuildContext getContext();
  5. /// 显示Progress
  6. void showProgress();
  7. /// 关闭Progress
  8. void closeProgress();
  9. /// 展示Toast
  10. void showToast(String string);
  11. }
  12. abstract class IPresenter extends ILifecycle {}