mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
27 lines
1,011 B
Dart
27 lines
1,011 B
Dart
import 'package:dartz/dartz.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-error/errors.pb.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-folder-data-model/protobuf.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-user-data-model/protobuf.dart' show UserProfile;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class NewUser {
|
|
UserProfile profile;
|
|
String workspaceId;
|
|
NewUser({
|
|
required this.profile,
|
|
required this.workspaceId,
|
|
});
|
|
}
|
|
|
|
abstract class IAuth {
|
|
Future<Either<UserProfile, FlowyError>> signIn(String? email, String? password);
|
|
Future<Either<UserProfile, FlowyError>> signUp(String? name, String? password, String? email);
|
|
Future<Either<Unit, FlowyError>> signOut();
|
|
}
|
|
|
|
abstract class IAuthRouter {
|
|
void pushWelcomeScreen(BuildContext context, UserProfile userProfile);
|
|
void pushSignUpScreen(BuildContext context);
|
|
void pushForgetPasswordScreen(BuildContext context);
|
|
void pushHomeScreen(BuildContext context, UserProfile profile, CurrentWorkspaceSetting workspaceSetting);
|
|
}
|