i_welcome.dart 453 B

123456789101112131415
  1. import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
  2. import 'package:flutter/widgets.dart';
  3. import 'auth_state.dart';
  4. abstract class ISplashAuth {
  5. Future<AuthState> currentUserProfile();
  6. }
  7. abstract class IWelcomeRoute {
  8. void pushSignInScreen(BuildContext context);
  9. Future<void> pushWelcomeScreen(BuildContext context, UserProfile profile);
  10. void pushHomeScreen(
  11. BuildContext context, UserProfile profile, String workspaceId);
  12. }