AppFlowy/app_flowy/lib/welcome/domain/i_welcome.dart

14 lines
312 B
Dart
Raw Normal View History

import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
2021-07-12 15:27:58 +00:00
import 'package:flutter/widgets.dart';
import 'auth_state.dart';
abstract class IWelcomeAuth {
Future<AuthState> currentUserState();
}
abstract class IWelcomeRoute {
Widget pushSignInScreen();
Widget pushHomeScreen(UserDetail userDetail);
}