mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
18 lines
588 B
Dart
18 lines
588 B
Dart
import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
|
|
import 'package:dartz/dartz.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
abstract class IAuth {
|
|
Future<Either<UserDetail, UserError>> signIn(String? email, String? password);
|
|
Future<Either<UserDetail, UserError>> signUp(
|
|
String? name, String? password, String? email);
|
|
|
|
Future<Either<Unit, UserError>> signOut();
|
|
}
|
|
|
|
abstract class IAuthRouter {
|
|
void showHomeScreen(BuildContext context, UserDetail user);
|
|
void showSignUpScreen(BuildContext context);
|
|
void showForgetPasswordScreen(BuildContext context);
|
|
}
|