mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
307 B
Dart
14 lines
307 B
Dart
|
import 'package:flowy_sdk/protobuf/user_detail.pb.dart';
|
||
|
import 'package:flutter/widgets.dart';
|
||
|
|
||
|
import 'auth_state.dart';
|
||
|
|
||
|
abstract class IWelcomeAuth {
|
||
|
Future<AuthState> currentUserState();
|
||
|
}
|
||
|
|
||
|
abstract class IWelcomeRoute {
|
||
|
Widget pushSignInScreen();
|
||
|
Widget pushHomeScreen(UserDetail userDetail);
|
||
|
}
|