mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
16 lines
594 B
Dart
16 lines
594 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<UserProfile, UserError>> signIn(String? email, String? password);
|
|
Future<Either<UserProfile, UserError>> signUp(String? name, String? password, String? email);
|
|
|
|
Future<Either<Unit, UserError>> signOut();
|
|
}
|
|
|
|
abstract class IAuthRouter {
|
|
void pushWelcomeScreen(BuildContext context, UserProfile userProfile);
|
|
void pushSignUpScreen(BuildContext context);
|
|
void pushForgetPasswordScreen(BuildContext context);
|
|
}
|