| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | import 'package:app_flowy/startup/startup.dart';import 'package:app_flowy/user/presentation/sign_up_screen.dart';import 'package:app_flowy/welcome/domain/i_splash.dart';import 'package:dartz/dartz.dart';import 'package:flowy_infra_ui/widget/route/animation.dart';import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';import 'package:app_flowy/user/domain/i_auth.dart';import 'package:app_flowy/user/infrastructure/repos/auth_repo.dart';import 'package:flutter/material.dart';class AuthImpl extends IAuth {  AuthRepository repo;  AuthImpl({    required this.repo,  });  @override  Future<Either<UserProfile, UserError>> signIn(      String? email, String? password) {    return repo.signIn(email: email, password: password);  }  @override  Future<Either<UserProfile, UserError>> signUp(      String? name, String? password, String? email) {    return repo.signUp(name: name, password: password, email: email);  }  @override  Future<Either<Unit, UserError>> signOut() {    return repo.signOut();  }}class AuthRouterImpl extends IAuthRouter {  @override  void pushForgetPasswordScreen(BuildContext context) {    // TODO: implement showForgetPasswordScreen  }  @override  void pushWelcomeScreen(BuildContext context, UserProfile userProfile) {    getIt<ISplashRoute>().pushWelcomeScreen(context, userProfile);  }  @override  void pushSignUpScreen(BuildContext context) {    Navigator.of(context).push(      PageRoutes.fade(        () => SignUpScreen(router: getIt<IAuthRouter>()),      ),    );  }}
 |