app_service.dart 232 B

1234567891011121314
  1. /*
  2. * Main 组件对应的路由抽象接口
  3. */
  4. import 'package:auto_route/auto_route.dart';
  5. import 'package:flutter/cupertino.dart';
  6. abstract class AppService {
  7. RootStackRouter getAppRouter();
  8. bool isDeviceFullScreen();
  9. }